debian-mirror-gitlab/db/migrate/20180504195842_project_name_lower_index.rb

33 lines
879 B
Ruby
Raw Normal View History

2018-11-08 19:23:39 +05:30
# See http://doc.gitlab.com/ce/development/migration_style_guide.html
# for more information on how to write migrations for GitLab.
2019-02-15 15:39:39 +05:30
class ProjectNameLowerIndex < ActiveRecord::Migration[4.2]
2018-11-08 19:23:39 +05:30
include Gitlab::Database::MigrationHelpers
# Set this constant to true if this migration requires downtime.
DOWNTIME = false
INDEX_NAME = 'index_projects_on_lower_name'
disable_ddl_transaction!
def up
return unless Gitlab::Database.postgresql?
2018-11-20 20:47:30 +05:30
disable_statement_timeout do
execute "CREATE INDEX CONCURRENTLY #{INDEX_NAME} ON projects (LOWER(name))"
end
2018-11-08 19:23:39 +05:30
end
def down
return unless Gitlab::Database.postgresql?
2018-11-20 20:47:30 +05:30
disable_statement_timeout do
if supports_drop_index_concurrently?
execute "DROP INDEX CONCURRENTLY IF EXISTS #{INDEX_NAME}"
else
execute "DROP INDEX IF EXISTS #{INDEX_NAME}"
end
2018-11-08 19:23:39 +05:30
end
end
end