mailr/db/migrate/20110723115402_create_users.rb
Wojciech Todryk 37f548ce46 devel
2011-07-27 20:34:30 +02:00

16 lines
247 B
Ruby
Executable file

class CreateUsers < ActiveRecord::Migration
def self.up
create_table :users do |t|
t.string :email
t.string :first_name
t.string :last_name
t.timestamps
end
end
def self.down
drop_table :users
end
end