Bug 37601: (QA follow-up) Adjust kohastructure.sql
Signed-off-by: Jonathan Druart <jonathan.druart@bugs.koha-community.org>
This commit is contained in:
parent
90ba1c1bfe
commit
d742e7066d
1 changed files with 1 additions and 1 deletions
|
@ -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`),
|
||||
|
|
Loading…
Reference in a new issue