summaryrefslogtreecommitdiff
path: root/priv/repo/migrations/20190501125843_add_fts_index_to_objects.exs
blob: 9b274695eb89281db6d04852efc4e8cbc2eaeb74 (plain)
1
2
3
4
5
6
7
8
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)
    create index(:objects, ["(to_tsvector('english', data->>'content'))"], using: :gin, name: :objects_fts)
  end
end