diff --git a/prisma/migrations/20260204100000_add_round_sort_order/migration.sql b/prisma/migrations/20260204100000_add_round_sort_order/migration.sql new file mode 100644 index 0000000..1da3bc6 --- /dev/null +++ b/prisma/migrations/20260204100000_add_round_sort_order/migration.sql @@ -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;