Files
Sitzplatzbuchungstool/pages/Sitzplätze/queries/CreateBooking/CreateBooking.txt
T
2026-08-18 13:35:19 +00:00

16 lines
355 B
Plaintext

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 }}
);