debian-mirror-gitlab/db/migrate/20191206022133_add_indexes_to_pages_domains_on_wildcard_and_domain_type.rb
2020-01-01 13:55:28 +05:30

20 lines
463 B
Ruby

# frozen_string_literal: true
class AddIndexesToPagesDomainsOnWildcardAndDomainType < ActiveRecord::Migration[5.2]
include Gitlab::Database::MigrationHelpers
DOWNTIME = false
disable_ddl_transaction!
def up
add_concurrent_index :pages_domains, :wildcard
add_concurrent_index :pages_domains, :domain_type
end
def down
remove_concurrent_index :pages_domains, :wildcard
remove_concurrent_index :pages_domains, :domain_type
end
end