12 lines
212 B
Ruby
12 lines
212 B
Ruby
|
class AddIndexToLabelsTitle < ActiveRecord::Migration
|
||
|
include Gitlab::Database::MigrationHelpers
|
||
|
|
||
|
DOWNTIME = false
|
||
|
|
||
|
disable_ddl_transaction!
|
||
|
|
||
|
def change
|
||
|
add_concurrent_index :labels, :title
|
||
|
end
|
||
|
end
|