Drop auction_orders Table#4622
Draft
AryanGodara wants to merge 4 commits into
Draft
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
|
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.Warning
Do not merge until the V112 release is fully rolled out on all networks.
The old autopilot code still writes to
auction_orders; dropping it while anyold pod is live breaks that write path. Gate:
flyway_schema_historyshowsversion
112on every network and no pre-#4568 pods remain.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.