Add migration for Round.sortOrder field
Build and Push Docker Image / build (push) Successful in 9m22s Details

Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
This commit is contained in:
Matt 2026-02-04 14:32:52 +01:00
parent 29827268b2
commit d1f7f0361d
1 changed files with 4 additions and 0 deletions

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;