class AddProviderIdToUsers

Public Instance Methods

change() click to toggle source
# File lib/osso/db/migrate/20200411184535_add_provider_id_to_users.rb, line 2
def change
  add_column :users, :identity_provider_id, :uuid

  add_foreign_key :users, :identity_providers
end