16 lines
355 B
Plaintext
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 }}
|
|
); |