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:
parent
d17c640510
commit
750f40eaae
1 changed files with 2 additions and 2 deletions
|
@ -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`),
|
||||
|
|
Loading…
Reference in a new issue