osem-fcy/db/migrate/20140603092041_create_openids.rb

15 lines
253 B
Ruby
Raw Normal View History

# frozen_string_literal: true
2014-06-18 18:05:28 +03:00
class CreateOpenids < ActiveRecord::Migration
2014-06-18 16:58:30 +03:00
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