Bug 37592: (follow-up) Fix database column names in kohastructure.sql

Signed-off-by: Katrin Fischer <katrin.fischer@bsz-bw.de>
This commit is contained in:
Katrin Fischer 2024-09-16 11:27:02 +00:00
parent d17c640510
commit 750f40eaae
Signed by: kfischer
GPG key ID: 0EF6E2C03357A834

View file

@ -1217,8 +1217,8 @@ CREATE TABLE `bookings` (
`pickup_library_id` varchar(10) NOT NULL COMMENT 'Identifier for booking pickup library',
`start_date` datetime DEFAULT NULL COMMENT 'the start date of the booking',
`end_date` datetime DEFAULT NULL COMMENT 'the end date of the booking',
`created_on` timestamp DEFAULT current_timestamp() COMMENT 'the timestamp for when a booking was created',
`updated_on` timestamp DEFAULT current_timestamp() ON UPDATE current_timestamp() COMMENT 'the timestamp for when a booking has been updated',
`creation_date` timestamp DEFAULT current_timestamp() COMMENT 'the timestamp for when a booking was created',
`modification_date` timestamp DEFAULT current_timestamp() ON UPDATE current_timestamp() COMMENT 'the timestamp for when a booking has been updated',
PRIMARY KEY (`booking_id`),
KEY `patron_id` (`patron_id`),
KEY `biblio_id` (`biblio_id`),