Add migration for Round.sortOrder field

Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
This commit is contained in:
2026-02-04 14:32:52 +01:00
parent 29827268b2
commit d1f7f0361d

View File

@@ -0,0 +1,4 @@
-- AddRoundSortOrder
-- Adds the sortOrder column to Round table for ordering rounds within a program
ALTER TABLE "Round" ADD COLUMN "sortOrder" INTEGER NOT NULL DEFAULT 0;