morz-infoboard/server/backend/internal/db/migrations/005_screen_schedules.sql
Jesko Anschütz 1556c0d002 feat(db): screen_schedules-Tabelle für Zeitplan
Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
2026-03-27 07:17:34 +01:00

8 lines
334 B
SQL
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

-- 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 ''
);