mailr/db/migrate/20110723115402_create_users.rb

16 lines
247 B
Ruby
Raw Normal View History

2011-07-23 21:55:26 +02:00
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