fixes lol
All checks were successful
Build and Push / build-all (push) Successful in 9m48s

This commit is contained in:
doomtube 2026-01-09 03:02:27 -05:00
parent 07b8e12197
commit a0e6d40679
11 changed files with 436 additions and 81 deletions

View file

@ -1252,6 +1252,17 @@ BEGIN
END IF;
END $$;
-- Add screensaver_type column to users table (default 'snowfall', options: 'snowfall', 'fractal_crystalline', 'random')
DO $$
BEGIN
IF NOT EXISTS (
SELECT 1 FROM information_schema.columns
WHERE table_name = 'users' AND column_name = 'screensaver_type'
) THEN
ALTER TABLE users ADD COLUMN screensaver_type VARCHAR(20) DEFAULT 'snowfall';
END IF;
END $$;
-- ============================================
-- LIVE STREAM DURATION TRACKING
-- ============================================