gitlab-org--gitlab-foss/db/migrate/20170130204620_add_index_to...

20 lines
459 B
Ruby
Raw Normal View History

# rubocop:disable RemoveIndex
class AddIndexToProjectAuthorizations < ActiveRecord::Migration[4.2]
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
2017-03-14 06:36:33 +00:00
def down
remove_index(:project_authorizations, :project_id) if
Gitlab::Database.postgresql?
2017-03-14 06:36:33 +00:00
end
end