Drop auction_orders Table#4622
Open
AryanGodara wants to merge 7 commits into
Open
Conversation
|
Reminder: Please update the DB Readme and comment whether migrations are reversible (include rollback scripts if applicable).
Caused by: |
Contributor
|
Claude finished @AryanGodara's task in 1m 40s —— View job PR Review: Drop
|
Contributor
|
Claude finished @AryanGodara's task in 52s —— View job PR Review: Drop
|
MartinquaXD
approved these changes
Jul 15, 2026
MartinquaXD
left a comment
Contributor
There was a problem hiding this comment.
Looks like we didn't have documentation for this table in the first place so LGTM.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Description
Follow-up to #4568, which stopped using the
auction_orderstable and switched the order->auction lookup to the GIN index oncompetition_auctions.order_uids(V112). This drops the now-unused table, as a follow-up (hotfix) release after V112.Drop is a fast, metadata-only Flyway migration (prior
auction_ordersdrop in V092 took 55 ms on prod) — no manual step needed despite the table's size.Changes
V113__drop_auction_orders.sql:DROP TABLE IF EXISTS auction_orders.How to test
No manual step needed as
DROP TABLEon an unused table is metadata-only andinstant. CI runs the full migration set; confirm it applies cleanly.
Related Issues
Partially addresses #3057.