2019-05-03 13:15:55 -04:00
|
|
|
defmodule Pleroma.Repo.Migrations.AddFTSIndexToObjects do
|
|
|
|
use Ecto.Migration
|
|
|
|
|
|
|
|
def change do
|
|
|
|
drop_if_exists index(:activities, ["(to_tsvector('english', data->'object'->>'content'))"], using: :gin, name: :activities_fts)
|
2019-06-30 21:08:07 -04:00
|
|
|
create_if_not_exists index(:objects, ["(to_tsvector('english', data->>'content'))"], using: :gin, name: :objects_fts)
|
2019-05-03 13:15:55 -04:00
|
|
|
end
|
|
|
|
end
|