class RemoveOauthClientIdFromEnterpriseAccounts

Public Instance Methods

down() click to toggle source
# File lib/osso/db/migrate/20201110190754_remove_oauth_client_id_from_enterprise_accounts.rb, line 6
def down
  add_reference :enterprise_accounts, :oauth_client, type: :uuid, index: true
end
up() click to toggle source
# File lib/osso/db/migrate/20201110190754_remove_oauth_client_id_from_enterprise_accounts.rb, line 2
def up
  remove_reference :enterprise_accounts, :oauth_client, index: true
end