forked from AkkomaGang/akkoma
Add tag index.
This still isn't optimal, but at least it isn't super slow.
This commit is contained in:
parent
6000f61727
commit
62ca2617cd
1 changed files with 9 additions and 0 deletions
9
priv/repo/migrations/20170917120416_add_tag_index.exs
Normal file
9
priv/repo/migrations/20170917120416_add_tag_index.exs
Normal 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
|
Loading…
Reference in a new issue