2016-10-31 07:00:53 -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 AddIndexToParentId < ActiveRecord::Migration[4.2]
|
2016-10-31 07:00:53 -04:00
|
|
|
include Gitlab::Database::MigrationHelpers
|
|
|
|
|
|
|
|
DOWNTIME = false
|
|
|
|
|
|
|
|
disable_ddl_transaction!
|
|
|
|
|
2017-03-07 11:08:53 -05:00
|
|
|
def up
|
2016-10-31 07:00:53 -04:00
|
|
|
add_concurrent_index(:namespaces, [:parent_id, :id], unique: true)
|
|
|
|
end
|
2017-03-07 11:08:53 -05:00
|
|
|
|
|
|
|
def down
|
|
|
|
remove_index :namespaces, [:parent_id, :id] if index_exists? :namespaces, [:parent_id, :id]
|
|
|
|
end
|
2016-10-31 07:00:53 -04:00
|
|
|
end
|