summaryrefslogtreecommitdiff
path: root/priv/repo/optional_migrations/rum_indexing/20190510135645_add_fts_index_to_objects_two.exs
blob: c95b977215187134c1645f7f4dda58c7636be6c0 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
# Pleroma: A lightweight social networking server
# Copyright © 2017-2022 Pleroma Authors <https://pleroma.social/>
# SPDX-License-Identifier: AGPL-3.0-only

defmodule Pleroma.Repo.Migrations.AddFtsIndexToObjectsTwo do
  use Ecto.Migration

  def up do
    execute("create extension if not exists rum")

    drop_if_exists(
      index(:objects, ["(to_tsvector('english', data->>'content'))"],
        using: :gin,
        name: :objects_fts
      )
    )

    alter table(:objects) do
      add(:fts_content, :tsvector)
    end

    execute("CREATE FUNCTION objects_fts_update() RETURNS trigger AS $$
    begin
    new.fts_content := to_tsvector(new.data->>'content');
    return new;
    end
    $$ LANGUAGE plpgsql")

    execute(
      "create index if not exists objects_fts on objects using RUM (fts_content rum_tsvector_addon_ops, inserted_at) with (attach = 'inserted_at', to = 'fts_content');"
    )

    execute("CREATE TRIGGER tsvectorupdate BEFORE INSERT OR UPDATE ON objects
    FOR EACH ROW EXECUTE PROCEDURE objects_fts_update()")

    execute("UPDATE objects SET updated_at = NOW()")
  end

  def down do
    execute("drop index if exists objects_fts")
    execute("drop trigger if exists tsvectorupdate on objects")
    execute("drop function if exists objects_fts_update()")

    alter table(:objects) do
      remove(:fts_content, :tsvector)
    end

    create_if_not_exists(
      index(:objects, ["(to_tsvector('english', data->>'content'))"],
        using: :gin,
        name: :objects_fts
      )
    )
  end
end