Bug 37601: (QA follow-up) Adjust kohastructure.sql

Signed-off-by: Jonathan Druart <jonathan.druart@bugs.koha-community.org>
This commit is contained in:
Paul Derscheid 2024-09-18 08:35:19 +00:00 committed by Jonathan Druart
parent 90ba1c1bfe
commit d742e7066d
Signed by: jonathan.druart
GPG key ID: A085E712BEF0E0F0

View file

@ -1219,7 +1219,7 @@ CREATE TABLE `bookings` (
`end_date` datetime DEFAULT NULL COMMENT 'the end date of the booking',
`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',
`status` enum('created', 'cancelled') NOT NULL DEFAULT 'created' COMMENT 'current status of the booking',
`status` enum('new', 'cancelled', 'completed') NOT NULL DEFAULT 'new' COMMENT 'current status of the booking',
PRIMARY KEY (`booking_id`),
KEY `patron_id` (`patron_id`),
KEY `biblio_id` (`biblio_id`),