Add FeWo Docker deployment and expand report themes

This commit is contained in:
2026-06-26 08:37:19 +00:00
parent 61a53e723e
commit 3a2f03d02e
7 changed files with 343 additions and 1 deletions
+2 -1
View File
@@ -6,7 +6,8 @@ CREATE TABLE IF NOT EXISTS report_customer_config (
contact_line VARCHAR(180) NOT NULL DEFAULT '',
logo_data_uri TEXT,
logo_text VARCHAR(5) NOT NULL,
theme VARCHAR(20) NOT NULL DEFAULT 'modern' CHECK (theme IN ('modern', 'classic')),
theme VARCHAR(40) NOT NULL DEFAULT 'modern'
CHECK (length(trim(theme)) > 0),
primary_color CHAR(7) NOT NULL DEFAULT '#1F5D66',
secondary_color CHAR(7) NOT NULL DEFAULT '#2C7C82',
accent_color CHAR(7) NOT NULL DEFAULT '#DBA25D',