mirror of
https://akkoma.dev/AkkomaGang/akkoma.git
synced 2024-11-07 17:13:12 +00:00
8 lines
205 B
Elixir
8 lines
205 B
Elixir
|
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
|