1
0
Fork 0
dokkan-data-rails/db/migrate/20150930004246_create_users.rb

13 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