mirror of
https://github.com/jtomchak/akkoma.git
synced 2025-02-23 13:43:08 +01:00
8 lines
223 B
Elixir
8 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
|