13 lines
214 B
Ruby
13 lines
214 B
Ruby
|
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
|