e884112cf07ef3ba61caa40a05c39a3ff0b4322a
[anni] / priv / repo / migrations / 20190603162018_add_object_in_reply_to_index.exs
1 # Pleroma: A lightweight social networking server
2 # Copyright © 2017-2022 Pleroma Authors <https://pleroma.social/>
3 # SPDX-License-Identifier: AGPL-3.0-only
4
5 defmodule Pleroma.Repo.Migrations.AddObjectInReplyToIndex do
6   use Ecto.Migration
7
8   def change do
9     create(index(:objects, ["(data->>'inReplyTo')"], name: :objects_in_reply_to_index))
10   end
11 end