2022-12-12 06:27:01 +00:00
|
|
|
class EnableMultiSearchable < ActiveRecord::Migration[6.1]
|
|
|
|
def up
|
2022-12-19 16:59:48 +00:00
|
|
|
::Conversations::MultiSearchJob.perform_now
|
2022-12-15 10:55:25 +00:00
|
|
|
execute 'CREATE EXTENSION IF NOT EXISTS pg_trgm;'
|
2022-12-12 06:27:01 +00:00
|
|
|
end
|
|
|
|
|
|
|
|
def down
|
|
|
|
PgSearch::Document.delete_all
|
|
|
|
end
|
|
|
|
end
|