5 lines
327 B
SQL
5 lines
327 B
SQL
-- Per-node scene-music volume (0-100%). Applied whenever a node sets a track;
|
|||
|
|
-- selecting the same track on a later node with a different volume just adjusts
|
||
|
|
-- the level without restarting the music.
|
||
|
|
ALTER TABLE osint.story_nodes ADD COLUMN music_volume SMALLINT NOT NULL DEFAULT 100 CHECK (music_volume BETWEEN 0 AND 100);
|