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