fix: resolve duplicate migration 0043 numbering#402
Conversation
- Add isAuthenticationError() helper for proper error classification - Improve try/catch coverage in agent creation and pairing flows - Update tests for new error handling paths
The second 0043 (seed_chain_data_pricing) is renumbered to 0044, and all subsequent migrations are cascaded +1. Before: two files numbered 0043 After: sequential 0043-0053 (no gaps, no duplicates)
|
Important Review skippedAuto reviews are disabled on this repository. Please check the settings in the CodeRabbit UI or the ⚙️ Run configurationConfiguration used: Organization UI Review profile: CHILL Plan: Pro Run ID: You can disable this status message by setting the Use the checkbox below for a quick retry:
✨ Finishing Touches🧪 Generate unit tests (beta)
Thanks for using CodeRabbit! It's free for OSS, and your support helps us grow. If you like it, consider giving us a shout-out. Comment Tip CodeRabbit can approve the review once all CodeRabbit's comments are resolved.Enable the |
|
The latest updates on your projects. Learn more about Vercel for GitHub.
|
Code ReviewCritical:
|
|
Combined into #403 (fix/steward-security-migrations) |
Problem
Two migration files share the number
0043:0043_add_missing_referral_context_columns.sql0043_seed_chain_data_pricing.sqlThis blocks clean migration execution for dev→prod promotion.
Fix
Renumbered the second
0043to0044and cascaded all subsequent migrations (+1). Final range:0043–0053(sequential, no gaps, no duplicates).Verification