discourse/db/migrate/20240912061806_drop_trgm_in...

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

14 lines
316 B
Ruby
Raw Normal View History

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