osem-fcy/db/migrate/20140603092041_create_openids.rb
2014-06-19 12:58:05 +03:00

12 lines
222 B
Ruby

class CreateOpenids < ActiveRecord::Migration
def change
create_table :openids do |t|
t.string :provider
t.string :email
t.string :uid
t.integer :user_id
t.timestamps
end
end
end