Files
gupi-osint-board/migrations/024_story_node_music_volume.sql
T

5 lines
327 B
SQL
Raw Normal View History

2026-08-18 21:02:16 +02:00
-- 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);