Add booking dao implementations

This commit is contained in:
Simon Goller 2024-05-07 18:19:00 +02:00
parent 4bca60a23c
commit 71c1432fd1
10 changed files with 225 additions and 13 deletions

View file

@ -0,0 +1,15 @@
-- Add migration script here
CREATE TABLE booking (
id blob(16) NOT NULL PRIMARY KEY,
sales_person_id blob(16) NOT NULL,
slot_id blob(16) NOT NULL,
calendar_week INTEGER NOT NULL,
year INTEGER NOT NULL,
created TEXT NOT NULL,
deleted TEXT,
update_timestamp TEXT,
update_process TEXT NOT NULL,
update_version blob(16) NOT NULL
);