mirror of
https://git.pleroma.social/pleroma/pleroma.git
synced 2024-12-23 16:40:29 +00:00
7 lines
223 B
Elixir
7 lines
223 B
Elixir
defmodule Pleroma.Repo.Migrations.AddObjectActivityIndex do
|
|
use Ecto.Migration
|
|
|
|
def change do
|
|
create index(:objects, ["(data->'object'->>'id')", "(data->>'type')"], name: :activities_create_objects_index)
|
|
end
|
|
end
|