pleroma/priv/repo/migrations/20220527134341_add_quote_url_index_to_objects.exs

18 lines
449 B
Elixir
Raw Normal View History

2023-11-12 13:38:08 +00:00
# Pleroma: A lightweight social networking server
# Copyright © 2017-2022 Pleroma Authors <https://pleroma.social/>
# SPDX-License-Identifier: AGPL-3.0-only
defmodule Pleroma.Repo.Migrations.AddQuoteUrlIndexToObjects do
use Ecto.Migration
@disable_ddl_transaction true
2023-11-12 13:38:08 +00:00
def change do
create_if_not_exists(
index(:objects, ["(data->'quoteUrl')"],
name: :objects_quote_url,
concurrently: true
)
)
2023-11-12 13:38:08 +00:00
end
end