schema.rb 1.1 KB

123456789101112131415161718192021222324252627282930
  1. # encoding: UTF-8
  2. # This file is auto-generated from the current state of the database. Instead
  3. # of editing this file, please use the migrations feature of Active Record to
  4. # incrementally modify your database, and then regenerate this schema definition.
  5. #
  6. # Note that this schema.rb definition is the authoritative source for your
  7. # database schema. If you need to create the application database on another
  8. # system, you should be using db:schema:load, not running all the migrations
  9. # from scratch. The latter is a flawed and unsustainable approach (the more migrations
  10. # you'll amass, the slower it'll run and the greater likelihood for issues).
  11. #
  12. # It's strongly recommended to check this file into your version control system.
  13. ActiveRecord::Schema.define(:version => 20111002180610) do
  14. create_table "microposts", :force => true do |t|
  15. t.string "content"
  16. t.integer "user_id"
  17. t.datetime "created_at"
  18. t.datetime "updated_at"
  19. end
  20. create_table "users", :force => true do |t|
  21. t.string "name"
  22. t.string "email"
  23. t.datetime "created_at"
  24. t.datetime "updated_at"
  25. end
  26. end