debshots/db/migrate/20170405204143_add_omniauth_to_users.rb

6 lines
158 B
Ruby

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