Welcome to mirror list, hosted at ThFree Co, Russian Federation.

20170209140523_validate_foreign_keys_on_oauth_openid_requests.rb « post_migrate « db - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: e206f9af63601ca54bb1b70bcd4cced4d97b1c8c (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
class ValidateForeignKeysOnOauthOpenidRequests < ActiveRecord::Migration
  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