12 lines
230 B
Ruby
12 lines
230 B
Ruby
class CreateUsers < ActiveRecord::Migration
|
|
def change
|
|
create_table :users do |t|
|
|
t.string :provider
|
|
t.string :uid
|
|
t.string :nickname
|
|
t.string :email
|
|
|
|
t.timestamps null: false
|
|
end
|
|
end
|
|
end
|