From afb6af56e77a46ef63651d8e893538803a3ec03b Mon Sep 17 00:00:00 2001 From: Aryan Godara <65490434+AryanGodara@users.noreply.github.com> Date: Mon, 13 Jul 2026 17:41:11 +0530 Subject: [PATCH 1/2] drop auction_orders_table --- database/sql/V113__drop_auction_orders.sql | 6 ++++++ 1 file changed, 6 insertions(+) create mode 100644 database/sql/V113__drop_auction_orders.sql diff --git a/database/sql/V113__drop_auction_orders.sql b/database/sql/V113__drop_auction_orders.sql new file mode 100644 index 0000000000..ca0b9a1aea --- /dev/null +++ b/database/sql/V113__drop_auction_orders.sql @@ -0,0 +1,6 @@ +-- Drop the redundant `auction_orders` junction table. Its data duplicated +-- `competition_auctions.order_uids`; the order->auction lookup now uses the GIN +-- index on that array (V112). The write path was removed in #4568, so this drop +-- ships one release later to ensure no pod running the old code still writes to +-- the table during the rollover. +DROP TABLE IF EXISTS auction_orders; From a1b33f3314d8494f3798ff8bf11068c0a975b4a4 Mon Sep 17 00:00:00 2001 From: Aryan Godara <65490434+AryanGodara@users.noreply.github.com> Date: Mon, 13 Jul 2026 18:47:31 +0530 Subject: [PATCH 2/2] Re-run CI