Files
Libr/db/migrate/20130107031555_create_users.rb
2013-01-07 11:36:56 +08:00

11 lines
169 B
Ruby

class CreateUsers < ActiveRecord::Migration
def change
create_table :users do |t|
t.string :email
t.string :name
t.timestamps
end
end
end