10 lines
232 B
Ruby
10 lines
232 B
Ruby
class EnableMultiSearchable < ActiveRecord::Migration[6.1]
|
|
def up
|
|
::Conversations::MultiSearchJob.perform_now
|
|
execute 'CREATE EXTENSION IF NOT EXISTS pg_trgm;'
|
|
end
|
|
|
|
def down
|
|
PgSearch::Document.delete_all
|
|
end
|
|
end
|