Guest User

Untitled

a guest
Jun 23rd, 2018
90
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.37 KB | None | 0 0
  1. # This file is auto-generated from the current state of the database. Instead of editing this file,
  2. # please use the migrations feature of Active Record to incrementally modify your database, and
  3. # then regenerate this schema definition.
  4. #
  5. # Note that this schema.rb definition is the authoritative source for your database schema. If you need
  6. # to create the application database on another system, you should be using db:schema:load, not running
  7. # all the migrations from scratch. The latter is a flawed and unsustainable approach (the more migrations
  8. # you'll amass, the slower it'll run and the greater likelihood for issues).
  9. #
  10. # It's strongly recommended to check this file into your version control system.
  11.  
  12. ActiveRecord::Schema.define(:version => 20100912022558) do
  13.  
  14. create_table "quests", :force => true do |t|
  15. t.string "objective"
  16. t.integer "reward"
  17. t.integer "failure"
  18. t.string "category"
  19. t.datetime "created_at"
  20. t.datetime "updated_at"
  21. t.datetime "deadline"
  22. t.integer "user_id"
  23. t.string "title"
  24. end
  25.  
  26. create_table "users", :force => true do |t|
  27. t.string "username"
  28. t.string "email"
  29. t.string "crypted_password"
  30. t.string "password_salt"
  31. t.string "persistence_token"
  32. t.datetime "created_at"
  33. t.datetime "updated_at"
  34. t.integer "experience", :default => 0
  35. t.boolean "completed"
  36. end
  37.  
  38. end
Add Comment
Please, Sign In to add comment