debian-mirror-gitlab/db/migrate/20170130204620_add_index_to_project_authorizations.rb

20 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 AddIndexToProjectAuthorizations < ActiveRecord::Migration[4.2]
2017-08-17 22:00:37 +05:30
include Gitlab::Database::MigrationHelpers
DOWNTIME = false
disable_ddl_transaction!
def up
unless index_exists?(:project_authorizations, :project_id)
add_concurrent_index(:project_authorizations, :project_id)
end
end
def down
remove_index(:project_authorizations, :project_id) if
Gitlab::Database.postgresql?
end
end