mirror of
https://git.pleroma.social/pleroma/pleroma.git
synced 2024-11-06 00:49:46 +00:00
14 lines
315 B
Elixir
14 lines
315 B
Elixir
defmodule Pleroma.Repo.Migrations.AddActivitiesLikesIndex do
|
|
use Ecto.Migration
|
|
@disable_ddl_transaction true
|
|
|
|
def change do
|
|
create(
|
|
index(:activities, ["((data #> '{\"object\",\"likes\"}'))"],
|
|
concurrently: true,
|
|
name: :activities_likes,
|
|
using: :gin
|
|
)
|
|
)
|
|
end
|
|
end
|