pleroma/priv/repo/migrations/20171023155035_add_second_o...

25 lines
644 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-10-23 18:30:09 +02:00
defmodule Pleroma.Repo.Migrations.AddSecondObjectIndexToActivty do
use Ecto.Migration
@disable_ddl_transaction true
def change do
2019-10-08 14:16:39 +02:00
drop_if_exists(
index(:activities, ["(data->'object'->>'id')", "(data->>'type')"],
name: :activities_create_objects_index
)
)
create(
index(:activities, ["(coalesce(data->'object'->>'id', data->>'object'))"],
name: :activities_create_objects_index,
concurrently: true
)
)
2017-10-23 18:30:09 +02:00
end
end