Files
railsgoat/db/migrate/20130424220355_create_users.rb
T
2013-04-25 01:24:59 -04:00

14 lines
249 B
Ruby
Executable File

class CreateUsers < ActiveRecord::Migration
def change
create_table :users do |t|
t.string :email
t.string :password
t.boolean :admin
t.string :first_name
t.string :last_name
t.timestamps
end
end
end