2017-08-17 22:00:37 +05:30
|
|
|
# See http://doc.gitlab.com/ce/development/migration_style_guide.html
|
|
|
|
# for more information on how to write migrations for GitLab.
|
|
|
|
|
|
|
|
# rubocop:disable RemoveIndex
|
2019-02-15 15:39:39 +05:30
|
|
|
class AddPathIndexToNamespace < ActiveRecord::Migration[4.2]
|
2017-08-17 22:00:37 +05:30
|
|
|
include Gitlab::Database::MigrationHelpers
|
|
|
|
|
|
|
|
disable_ddl_transaction!
|
|
|
|
|
|
|
|
DOWNTIME = false
|
|
|
|
|
|
|
|
def up
|
|
|
|
add_concurrent_index :namespaces, :path
|
|
|
|
end
|
|
|
|
|
|
|
|
def down
|
|
|
|
if index_exists?(:namespaces, :path)
|
|
|
|
remove_index :namespaces, :path
|
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|