Files
nairobi/db/migrate/20150824144524_create_identities.rb
2015-08-24 20:24:10 +02:00

12 lines
250 B
Ruby

class CreateIdentities < ActiveRecord::Migration
def change
create_table :identities do |t|
t.references :user, index: true, foreign_key: true
t.string :provider
t.string :uid
t.timestamps null: false
end
end
end