blob: faed5e31b2122c89226da7310902d56f616fb2ee (
plain)
1
2
3
4
5
6
7
  | 
defmodule Pleroma.Repo.Migrations.AddObjectInReplyToIndex do
  use Ecto.Migration
  def change do
    create(index(:objects, ["(data->>'inReplyTo')"], name: :objects_in_reply_to_index))
  end
end
  |