mailr/db/migrate/20110723115402_create_users.rb
2011-07-23 21:55:26 +02:00

16 lines
247 B
Ruby

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