2017-10-24 06:16:17 -06:00
|
|
|
defmodule Pleroma.Repo.Migrations.AddObjectActorIndex do
|
|
|
|
use Ecto.Migration
|
|
|
|
|
|
|
|
def change do
|
2024-06-18 18:05:38 -06:00
|
|
|
create(index(:objects, ["(data->>'actor')", "(data->>'type')"], name: :objects_actor_type))
|
2017-10-24 06:16:17 -06:00
|
|
|
end
|
|
|
|
end
|