debian-mirror-gitlab/db/migrate/20161106185620_add_project_import_data_project_index.rb

18 lines
459 B
Ruby
Raw Normal View History

2017-08-17 22:00:37 +05:30
# rubocop:disable RemoveIndex
2019-02-15 15:39:39 +05:30
class AddProjectImportDataProjectIndex < ActiveRecord::Migration[4.2]
2017-08-17 22:00:37 +05:30
include Gitlab::Database::MigrationHelpers
# Set this constant to true if this migration requires downtime.
DOWNTIME = false
disable_ddl_transaction!
def up
add_concurrent_index :project_import_data, :project_id
end
def down
remove_index :project_import_data, :project_id if index_exists? :project_import_data, :project_id
end
end