Browse Source

Add tag index.

This still isn't optimal, but at least it isn't super slow.
tags/v0.9.9
Roger Braun 6 years ago
parent
commit
62ca2617cd
1 changed files with 9 additions and 0 deletions
  1. +9
    -0
      priv/repo/migrations/20170917120416_add_tag_index.exs

+ 9
- 0
priv/repo/migrations/20170917120416_add_tag_index.exs 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

Loading…
Cancel
Save