debian-mirror-gitlab/db/post_migrate/20170209140523_validate_foreign_keys_on_oauth_openid_requests.rb
2019-02-15 15:39:39 +05:30

21 lines
428 B
Ruby

class ValidateForeignKeysOnOauthOpenidRequests < ActiveRecord::Migration[4.2]
include Gitlab::Database::MigrationHelpers
DOWNTIME = false
disable_ddl_transaction!
def up
if Gitlab::Database.postgresql?
execute %q{
ALTER TABLE "oauth_openid_requests"
VALIDATE CONSTRAINT "fk_oauth_openid_requests_oauth_access_grants_access_grant_id";
}
end
end
def down
# noop
end
end