We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents fa988fd + d6b3dc6 commit 9a2329cCopy full SHA for 9a2329c
server/db/migrations/014_add_workshop_is_paused.sql
@@ -0,0 +1,5 @@
1
+-- Migration 014: Add is_paused to workshop
2
+-- Controls whether the workshop is paused (participants cannot play while paused).
3
+-- Default false: workshop is not paused.
4
+
5
+ALTER TABLE workshop ADD COLUMN is_paused boolean NOT NULL DEFAULT false;
0 commit comments