Add REST endpoint for slot

This commit is contained in:
Simon Goller 2024-05-02 23:25:04 +02:00
parent 82e89baeeb
commit 8f378472ea
28 changed files with 1925 additions and 28 deletions

View file

@ -0,0 +1,15 @@
-- Add migration script here
CREATE TABLE slot (
id blob(16) NOT NULL PRIMARY KEY,
day_of_week INTEGER NOT NULL,
time_from TEXT NOT NULL,
time_to TEXT NOT NULL,
valid_from TEXT NOT NULL,
valid_to TEXT,
deleted TEXT,
update_timestamp TEXT,
update_process TEXT NOT NULL,
update_version blob(16) NOT NULL
);