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

class AddIndexOnOperationsFeatureFlagsIid < ActiveRecord::Migration[5.2]
  include Gitlab::Database::MigrationHelpers

  DOWNTIME = false

  disable_ddl_transaction!

  def up
    add_concurrent_index :operations_feature_flags, [:project_id, :iid], unique: true
  end

  def down
    remove_concurrent_index :operations_feature_flags, [:project_id, :iid]
  end
end