pleroma/priv/repo/migrations/20170620133028_add_object_activity_index.exs

13 lines
431 B
Elixir
Raw Normal View History

2022-02-25 22:11:42 -08:00
# Pleroma: A lightweight social networking server
# Copyright © 2017-2023 Pleroma Authors <https://pleroma.social/>
2022-02-25 22:11:42 -08:00
# SPDX-License-Identifier: AGPL-3.0-only
2017-06-20 07:18:42 -07:00
defmodule Pleroma.Repo.Migrations.AddObjectActivityIndex do
use Ecto.Migration
def change do
2017-09-16 15:01:49 -07:00
# This was wrong, now a noop
2019-06-30 18:08:07 -07:00
# create_if_not_exists index(:objects, ["(data->'object'->>'id')", "(data->>'type')"], name: :activities_create_objects_index)
2017-06-20 07:18:42 -07:00
end
end