Guest User

Untitled

a guest
Jul 22nd, 2018
87
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.73 KB | None | 0 0
  1. create_table "users", :force => true do |t|
  2. t.string "email"
  3. t.string "first_name", :limit => 30
  4. t.string "last_name", :limit => 30
  5. t.string "hashed_password", :limit => 64
  6. t.string "salt", :limit => 40
  7. t.boolean "is_administrator"
  8. t.string "password_reset_hash"
  9. t.datetime "password_reset_expires"
  10. t.datetime "created_at"
  11. t.datetime "updated_at"
  12. t.datetime "birthday"
  13. t.integer "weight"
  14. t.integer "bodyfat"
  15. t.string "gender"
  16. end
  17.  
  18. create_table "sessions", :force => true do |t|
  19. t.string "session_id", :null => false
  20. t.text "data"
  21. t.datetime "created_at"
  22. t.datetime "updated_at"
  23. end
Add Comment
Please, Sign In to add comment