Compare commits

..

No commits in common. "01bdebb03f69c32c089d19085c2e8e85544ee82b" and "8376ca1ddae804773c10c1a1c7f0d6ed1af9b617" have entirely different histories.

1 changed files with 8 additions and 8 deletions

View File

@ -2,23 +2,23 @@ defmodule Pleroma.Repo.Migrations.CreatePgroongaIndex do
use Ecto.Migration
def up do
execute("DROP INDEX IF EXISTS objects_fts")
execute("CREATE EXTENSION IF NOT EXISTS pgroonga")
create_if_not_exists(
index(:objects, ["(data->'content') pgroonga_jsonb_full_text_search_ops_v2"],
using: :pgroonga,
name: :object_content_pgroonga
drop_if_exists(
index(:objects, ["(to_tsvector('english', data->>'content'))"],
using: :gin,
name: :objects_fts
)
)
execute(
"CREATE INDEX object_content_pgroonga ON objects USING pgroonga ((data->'content') pgroonga_jsonb_full_text_search_ops_v2)"
)
end
def down do
execute("DROP INDEX IF EXISTS object_content_pgroonga")
execute("DROP EXTENSION IF EXISTS pgroonga")
create_if_not_exists(
index(:objects, ["(to_tsvector('english', data->>'content'))"],
using: :gin,