pleroma/priv/repo/migrations/20170620142420_add_object_a...

22 lines
586 B
Elixir
Raw Normal View History

2022-02-26 07:11:42 +01:00
# Pleroma: A lightweight social networking server
# Copyright © 2017-2022 Pleroma Authors <https://pleroma.social/>
# SPDX-License-Identifier: AGPL-3.0-only
2017-06-20 16:25:28 +02:00
defmodule Pleroma.Repo.Migrations.AddObjectActivityIndexPartTwo do
use Ecto.Migration
def change do
2019-10-08 14:16:39 +02:00
drop_if_exists(
index(:objects, ["(data->'object'->>'id')", "(data->>'type')"],
name: :activities_create_objects_index
)
)
create_if_not_exists(
index(:activities, ["(data->'object'->>'id')", "(data->>'type')"],
name: :activities_create_objects_index
)
)
2017-06-20 16:25:28 +02:00
end
end