Commit da1dadd
authored
fix(db): resolve goose version collision between today's migrations (#3369)
Two migrations merged today share the goose version `20260723120000`
(`set_tier_max_disk_size` from #3350 and
`rename_default_team_names_to_project` from #3334). Goose panics on
duplicate versions at collection time, so since the second merge
**every** goose invocation fails — all DB-touching test shards on every
open PR, and any deploy-time migration step.
Renumbers the later-merged one to `20260723172400` (its merge time).
This is safe precisely because of the failure mode: no goose run since
the collision could have applied it anywhere, so no environment has it
recorded under the old version; the earlier migration keeps its number
and its applied history.
Flagging as the likely root cause of ARM64 test-shard failures on
currently-open PRs (observed on #3368) and of any migration-step
failures in deploys since 17:24Z.1 parent ac26e15 commit da1dadd
1 file changed
Lines changed: 59 additions & 0 deletions
Lines changed: 59 additions & 0 deletions
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
| |||
| 1 | + | |
| 2 | + | |
| 3 | + | |
| 4 | + | |
| 5 | + | |
| 6 | + | |
| 7 | + | |
| 8 | + | |
| 9 | + | |
| 10 | + | |
| 11 | + | |
| 12 | + | |
| 13 | + | |
| 14 | + | |
| 15 | + | |
| 16 | + | |
| 17 | + | |
| 18 | + | |
| 19 | + | |
| 20 | + | |
| 21 | + | |
| 22 | + | |
| 23 | + | |
| 24 | + | |
| 25 | + | |
| 26 | + | |
| 27 | + | |
| 28 | + | |
| 29 | + | |
| 30 | + | |
| 31 | + | |
| 32 | + | |
| 33 | + | |
| 34 | + | |
| 35 | + | |
| 36 | + | |
| 37 | + | |
| 38 | + | |
| 39 | + | |
| 40 | + | |
| 41 | + | |
| 42 | + | |
| 43 | + | |
| 44 | + | |
| 45 | + | |
| 46 | + | |
| 47 | + | |
| 48 | + | |
| 49 | + | |
| 50 | + | |
| 51 | + | |
| 52 | + | |
| 53 | + | |
| 54 | + | |
| 55 | + | |
| 56 | + | |
| 57 | + | |
| 58 | + | |
| 59 | + | |
0 commit comments