started working on the backend

This commit is contained in:
z1glr
2025-01-07 16:37:37 +00:00
parent 03b2b0e206
commit c3bc06fe82
34 changed files with 1437 additions and 54 deletions

9
init.sql Normal file
View File

@@ -0,0 +1,9 @@
INSERT INTO TASKS (text) VALUES ("Ton"), ("Livestream"), ("Kamera"), ("Licht"), ("Livestream Ton");
INSERT INTO AVAILABILITIES (text) VALUES ("Ja"), ("Eventuell"), ("Nein");
INSERT INTO EVENTS(date, description) VALUES ("2025-01-05T11:00", "Neuer Prädikant");
INSERT INTO USER_AVAILABILITIES (userName, eventID, availabilityID) VALUES ("admin", 1, 1);
INSERT INTO USER_ASSIGNMENTS (eventID, taskID, userName) VALUES (1, 1, "admin");