discourse/db/migrate/20200820232017_drop_idx_reg...

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

12 lines
243 B
Ruby
Raw Normal View History

class DropIdxRegularPostSearchData < ActiveRecord::Migration[6.0]
def up
execute <<~SQL
DROP INDEX CONCURRENTLY IF EXISTS idx_regular_post_search_data
SQL
end
def down
raise ActiveRecord::IrreversibleMigration
end
end