debian-mirror-gitlab/db/migrate/20171220191323_add_index_on_namespaces_lower_name.rb

33 lines
940 B
Ruby
Raw Normal View History

2019-02-15 15:39:39 +05:30
class AddIndexOnNamespacesLowerName < ActiveRecord::Migration[4.2]
2018-03-17 18:26:18 +05:30
include Gitlab::Database::MigrationHelpers
DOWNTIME = false
INDEX_NAME = 'index_on_namespaces_lower_name'
disable_ddl_transaction!
def up
return unless Gitlab::Database.postgresql?
2018-11-20 20:47:30 +05:30
disable_statement_timeout do
if Gitlab::Database.version.to_f >= 9.5
# Allow us to hot-patch the index manually ahead of the migration
execute "CREATE INDEX CONCURRENTLY IF NOT EXISTS #{INDEX_NAME} ON namespaces (lower(name));"
else
execute "CREATE INDEX CONCURRENTLY #{INDEX_NAME} ON namespaces (lower(name));"
end
2018-03-17 18:26:18 +05:30
end
end
def down
return unless Gitlab::Database.postgresql?
2018-11-20 20:47:30 +05:30
disable_statement_timeout do
if Gitlab::Database.version.to_f >= 9.2
execute "DROP INDEX CONCURRENTLY IF EXISTS #{INDEX_NAME};"
else
execute "DROP INDEX IF EXISTS #{INDEX_NAME};"
end
2018-03-17 18:26:18 +05:30
end
end
end