mirror of
https://git.pleroma.social/sjw/pleroma.git
synced 2024-11-11 17:59:27 +01:00
9 lines
272 B
Elixir
9 lines
272 B
Elixir
defmodule Pleroma.Repo.Migrations.AddObjectActivityIndex do
|
|
use Ecto.Migration
|
|
|
|
def change do
|
|
# This was wrong, now a noop
|
|
# create_if_not_exists index(:objects, ["(data->'object'->>'id')", "(data->>'type')"], name: :activities_create_objects_index)
|
|
end
|
|
end
|