summaryrefslogtreecommitdiff
path: root/db/migrate/20200408154533_validate_protected_branch_push_access_levels_user_id_foreign_key.rb
blob: d6f9cab6d7e61ea37dac9d150f1ab67a9a7991d5 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
# frozen_string_literal: true

class ValidateProtectedBranchPushAccessLevelsUserIdForeignKey < ActiveRecord::Migration[6.0]
  include Gitlab::Database::MigrationHelpers

  DOWNTIME = false
  CONSTRAINT_NAME = 'fk_protected_branch_push_access_levels_user_id'

  def up
    validate_foreign_key :protected_branch_push_access_levels, :user_id, name: CONSTRAINT_NAME
  end

  def down
    # no op
  end
end