discourse/db/migrate/20240912061806_drop_trgm_indexes_on_users.rb

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

19 lines
398 B
Ruby
Raw Normal View History

# frozen_string_literal: true
class DropTrgmIndexesOnUsers < ActiveRecord::Migration[7.1]
disable_ddl_transaction!
def up
execute <<~SQL
DROP INDEX CONCURRENTLY IF EXISTS index_users_on_username_lower_trgm;
SQL
execute <<~SQL
DROP INDEX CONCURRENTLY IF EXISTS index_users_on_name_trgm;
SQL
end
def down
raise ActiveRecord::IrreversibleMigration
end
end