Add booking dao implementations
This commit is contained in:
parent
4bca60a23c
commit
71c1432fd1
10 changed files with 225 additions and 13 deletions
15
migrations/20240507063704_add-booking.sql
Normal file
15
migrations/20240507063704_add-booking.sql
Normal 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
|
||||
);
|
||||
Loading…
Add table
Add a link
Reference in a new issue