fix(migrations): renumber duplicate 054 prefix to 055 (PMS-411) #303
Loading…
Reference in a new issue
No description provided.
Delete branch "fix/PMS-migration-054-prefix-collision"
Deleting a branch is permanent. Although the deleted branch may continue to exist for a short time before it actually gets removed, it CANNOT be undone in most cases. Continue?
Fixes PMS-411. main has two
migrations/054_*.sql(PMS-394054_time_entry_general_categoryfrom #297 and PMS-410054_user_theme_prefsfrom #301). The duplicate numeric prefix breakscheck-migrations(PMS-198) and the sqlx test/migrate setup, so main's Check job is red and every open server PR inherits the broken migration set.Renumbers
054_time_entry_general_category.sql->055_time_entry_general_category.sql(the second to merge). Pure rename -sqlx::migrate!()globs the directory, the two migrations are independent DDL, and main CI has been red since the collision (gating deploys) so no environment has applied a 054 yet.This unblocks the other open server PRs (which then still each need their own colliding migration renumbered: #299
054_scheduling_templates, #296054_companies_tenant_name_unique, #295054_tickets_tenant_team_idx, #268051_project_default_due_business_days).#PMS-411