feat(db): add growing_enabled column to recorders (migration 014)
This commit is contained in:
parent
ee0c2a12de
commit
09e2987c14
1 changed files with 7 additions and 0 deletions
|
|
@ -0,0 +1,7 @@
|
|||
-- Migration 014: Per-recorder growing_enabled override
|
||||
-- Adds a nullable boolean to the recorders table so each recorder can
|
||||
-- independently override the global growing_enabled setting. NULL means
|
||||
-- "use global"; TRUE/FALSE means "force on/off for this recorder".
|
||||
|
||||
ALTER TABLE recorders
|
||||
ADD COLUMN IF NOT EXISTS growing_enabled BOOLEAN DEFAULT NULL;
|
||||
Loading…
Reference in a new issue