18 lines
322 B
Ruby
18 lines
322 B
Ruby
|
# frozen_string_literal: true
|
||
|
|
||
|
class AddEpicsConfidentialIndex < ActiveRecord::Migration[6.0]
|
||
|
include Gitlab::Database::MigrationHelpers
|
||
|
|
||
|
DOWNTIME = false
|
||
|
|
||
|
disable_ddl_transaction!
|
||
|
|
||
|
def up
|
||
|
add_concurrent_index :epics, :confidential
|
||
|
end
|
||
|
|
||
|
def down
|
||
|
remove_concurrent_index :epics, :confidential
|
||
|
end
|
||
|
end
|