2019-05-03 17:15:55 +00:00
|
|
|
defmodule Pleroma.Repo.Migrations.AddFTSIndexToObjects do
|
|
|
|
use Ecto.Migration
|
|
|
|
|
|
|
|
def change do
|
2019-10-08 12:16:39 +00: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 17:15:55 +00:00
|
|
|
end
|
|
|
|
end
|