Add an index on object likes
In !1538 favorites timeline was switched to use the joined object, but no idex on likes in the joined object was added.
This commit is contained in:
parent
0e50e9e4fa
commit
05e7d0a438
2 changed files with 8 additions and 0 deletions
|
|
@ -0,0 +1,7 @@
|
|||
defmodule Pleroma.Repo.Migrations.AddLikesIndexToObjects do
|
||||
use Ecto.Migration
|
||||
|
||||
def change do
|
||||
create_if_not_exists index(:objects, ["(data->'likes')"], using: :gin, name: :objects_likes)
|
||||
end
|
||||
end
|
||||
Loading…
Add table
Add a link
Reference in a new issue