From b978dab2eaf5d341f3b68cdbdbbb16fe9b740d23 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?nicole=20miko=C5=82ajczyk?= Date: Wed, 28 Jan 2026 14:24:25 +0100 Subject: [PATCH] Remove migration merged upstream MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Signed-off-by: nicole mikołajczyk --- ...25164000_add_activity_assigned_account_index.exs | 13 ------------- 1 file changed, 13 deletions(-) delete mode 100644 priv/repo/optional_migrations/rebased_rollbacks/20220225164000_add_activity_assigned_account_index.exs diff --git a/priv/repo/optional_migrations/rebased_rollbacks/20220225164000_add_activity_assigned_account_index.exs b/priv/repo/optional_migrations/rebased_rollbacks/20220225164000_add_activity_assigned_account_index.exs deleted file mode 100644 index fd2193a121..0000000000 --- a/priv/repo/optional_migrations/rebased_rollbacks/20220225164000_add_activity_assigned_account_index.exs +++ /dev/null @@ -1,13 +0,0 @@ -defmodule Pleroma.Repo.Migrations.AddActivityAssignedAccountIndex do - use Ecto.Migration - - def up, do: :noop - - def down do - drop_if_exists( - index(:activities, ["(data->>'assigned_account')"], - name: :activities_assigned_account_index - ) - ) - end -end