debian-mirror-gitlab/db/migrate/20180215181245_users_name_lower_index.rb

22 lines
643 B
Ruby
Raw Normal View History

2018-03-17 18:26:18 +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 UsersNameLowerIndex < ActiveRecord::Migration[4.2]
2018-03-17 18:26:18 +05:30
include Gitlab::Database::MigrationHelpers
# Set this constant to true if this migration requires downtime.
DOWNTIME = false
INDEX_NAME = 'index_on_users_name_lower'
disable_ddl_transaction!
def up
# On GitLab.com this produces an index with a size of roughly 60 MB.
execute "CREATE INDEX CONCURRENTLY #{INDEX_NAME} ON users (LOWER(name))"
end
def down
2019-12-26 22:10:19 +05:30
execute "DROP INDEX CONCURRENTLY IF EXISTS #{INDEX_NAME}"
2018-03-17 18:26:18 +05:30
end
end