pic_vert_app/db/migrate/20130114112013_create_forum_users.rb
Nicolas Bally 5a03ac9aa6 suite
2014-12-09 01:06:56 +01:00

41 lines
891 B
Ruby

class CreateForumUsers < ActiveRecord::Migration
def change
create_table :forum_users do |t|
t.string :name
t.string :firstname
t.text :bio
t.string :avatar
t.string :localisation
t.boolean :moderator
## Database authenticatable
t.string :email, :null => false, :default => ""
t.string :password_digest, :null => false, :default => ""
## Recoverable
t.string :reset_password_token
t.datetime :reset_password_sent_at
## Rememberable
t.datetime :remember_created_at
## Trackable
t.integer :sign_in_count, :default => 0
t.datetime :current_sign_in_at
t.datetime :last_sign_in_at
t.string :current_sign_in_ip
t.string :last_sign_in_ip
t.boolean :lock
t.datetime :locked_at
t.timestamps
end
end
end