Add tag index.

This still isn't optimal, but at least it isn't super slow.
This commit is contained in:
Roger Braun 2017-09-17 14:05:53 +02:00
parent 6000f61727
commit 62ca2617cd
1 changed files with 9 additions and 0 deletions

View File

@ -0,0 +1,9 @@
defmodule Pleroma.Repo.Migrations.AddTagIndex do
use Ecto.Migration
@disable_ddl_transaction true
def change do
create index(:activities, ["(data #> '{\"object\",\"tag\"}')"], concurrently: true, using: :gin, name: :activities_tags)
end
end