gitlab-org--gitlab-foss/db/migrate/20170210062829_add_index_to...

13 lines
271 B
Ruby

class AddIndexToLabelsForTitleAndProject < ActiveRecord::Migration
include Gitlab::Database::MigrationHelpers
DOWNTIME = false
disable_ddl_transaction!
def change
add_concurrent_index :labels, :title
add_concurrent_index :labels, :project_id
end
end