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

12 lines
196 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.timestamps
end
end
end