blob: 1abbd78027535292bcdce60a12b53468f38a4ec0 (
plain)
1
2
3
4
5
6
7
|
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
|