feat(db): screen_schedules-Tabelle für Zeitplan

Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
This commit is contained in:
Jesko Anschütz 2026-03-27 07:17:34 +01:00
parent bdd99d10bd
commit 1556c0d002

View file

@ -0,0 +1,8 @@
-- Migration 005: Display-Steuerung Zeitplan pro Screen
create table if not exists screen_schedules (
screen_id text primary key references screens(id) on delete cascade,
schedule_enabled boolean not null default false,
power_on_time text not null default '',
power_off_time text not null default ''
);