blob: 41630bace6b4a1c8b070435767c81a38e5e57040 (
plain)
| 1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
 | 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_if_not_exists(
      index(:objects, ["(to_tsvector('english', data->>'content'))"],
        using: :gin,
        name: :objects_fts
      )
    )
  end
end
 |