feat(db): screen_schedules-Tabelle für Zeitplan
Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
This commit is contained in:
parent
bdd99d10bd
commit
1556c0d002
1 changed files with 8 additions and 0 deletions
|
|
@ -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 ''
|
||||||
|
);
|
||||||
Loading…
Add table
Reference in a new issue