realestately/db/migrate/20171012073953_add_omniauth_to_users.rb
2017-10-13 10:17:32 +11:00

6 lines
158 B
Ruby

class AddOmniauthToUsers < ActiveRecord::Migration[5.1]
def change
add_column :users, :provider, :string
add_column :users, :uid, :string
end
end