2019-05-03 17:15:55 +00: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-07-01 01:08:07 +00:00
|
|
|
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
|