Sha256: 8030827a2fdfc23f371823418d673d7164059afe8d8ee0b32c5cfa6537a16ca3
Contents?: true
Size: 380 Bytes
Versions: 43
Compression:
Stored size: 380 Bytes
Contents
class CreateUsers < ActiveRecord::Migration def change create_table :users do |t| t.string :email t.string :password_digest t.string :first_name t.string :last_name t.boolean :admin, default: false t.string :auth_token t.string :password_reset_token t.datetime :password_reset_sent_at t.timestamps end end end
Version data entries
43 entries across 43 versions & 1 rubygems