Neueste Version

This commit is contained in:
2026-08-18 13:35:19 +00:00
parent 179347a45b
commit 5cc0d238c5
31 changed files with 603 additions and 219 deletions
@@ -0,0 +1,16 @@
INSERT INTO `buchungen`
(
`platz_id`,
`titel`,
`startzeit`,
`endzeit`,
`gebucht_von`
)
VALUES
(
{{ appsmith.store.bookingFormData.seatId }},
{{ appsmith.store.bookingFormData.title }},
{{ appsmith.store.bookingFormData.startDateTime }},
{{ appsmith.store.bookingFormData.endDateTime }},
{{ appsmith.store.bookingFormData.bookedBy }}
);