Sprankelprachtig aan/afmeldsysteem

20161207204150_create_users.rb 301B

1234567891011121314
  1. class CreateUsers < ActiveRecord::Migration[5.0]
  2. def change
  3. create_table :users do |t|
  4. t.string :email
  5. t.string :password_hash
  6. t.string :confirmation_token
  7. t.string :password_reset_token
  8. t.references :person, foreign_key: true
  9. t.timestamps
  10. end
  11. end
  12. end