2019-05-03 13:15:55 -04:00
|
|
|
defmodule Pleroma.Repo.Migrations.AddFTSIndexToObjects do
|
|
|
|
use Ecto.Migration
|
|
|
|
|
|
|
|
def change do
|
2019-10-08 08:16:39 -04:00
|
|
|
drop_if_exists(
|
|
|
|
index(:activities, ["(to_tsvector('english', data->'object'->>'content'))"],
|
|
|
|
using: :gin,
|
|
|
|
name: :activities_fts
|
|
|
|
)
|
|
|
|
)
|
|
|
|
|
|
|
|
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
|