2016-06-20 08:03:21 -04:00
|
|
|
# See http://doc.gitlab.com/ce/development/migration_style_guide.html
|
|
|
|
# for more information on how to write migrations for GitLab.
|
|
|
|
|
2017-04-05 18:53:57 -04:00
|
|
|
# rubocop:disable RemoveIndex
|
2018-11-13 02:27:31 -05:00
|
|
|
class AddIndexOnRunnersLocked < ActiveRecord::Migration[4.2]
|
2016-06-20 08:03:21 -04:00
|
|
|
include Gitlab::Database::MigrationHelpers
|
|
|
|
|
2017-03-07 13:14:31 -05:00
|
|
|
DOWNTIME = false
|
|
|
|
|
2016-06-20 08:03:21 -04:00
|
|
|
disable_ddl_transaction!
|
|
|
|
|
2017-03-07 11:08:53 -05:00
|
|
|
def up
|
2016-06-20 08:03:21 -04:00
|
|
|
add_concurrent_index :ci_runners, :locked
|
|
|
|
end
|
2017-03-07 11:08:53 -05:00
|
|
|
|
|
|
|
def down
|
|
|
|
remove_index :ci_runners, :locked if index_exists? :ci_runners, :locked
|
|
|
|
end
|
2016-06-20 08:03:21 -04:00
|
|
|
end
|