1
0
Fork 0
find-us-lunch/db/migrate/20141002202749_create_users.rb

13 lines
214 B
Ruby
Raw Permalink Normal View History

2014-10-02 16:29:18 -04:00
class CreateUsers < ActiveRecord::Migration
def change
create_table :users do |t|
t.string :provider
t.string :uid
t.string :name
t.string :email
t.timestamps
end
end
end