We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents 658b317 + 9a2329c commit f2b314dCopy full SHA for f2b314d
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