@@ -, +, @@ --- .../data/mysql/atomicupdate/bug_22456.pl | 21 +++++++++++++++++++ installer/data/mysql/kohastructure.sql | 15 +++++++++++++ 2 files changed, 36 insertions(+) create mode 100755 installer/data/mysql/atomicupdate/bug_22456.pl --- a/installer/data/mysql/atomicupdate/bug_22456.pl +++ a/installer/data/mysql/atomicupdate/bug_22456.pl @@ -0,0 +1,21 @@ +use Modern::Perl; + +return { + bug_number => "22456", + description => "Allow cancelling waiting holds", + up => sub { + my ($args) = @_; + my ($dbh, $out) = @$args{qw(dbh out)}; + + unless ( TableExists( 'hold_cancellation_requests' ) ) { + $dbh->do(q{ + CREATE TABLE `hold_cancellation_requests` ( + `hold_cancellation_request_id` int(11) NOT NULL AUTO_INCREMENT COMMENT 'Unique ID of the cancellation request', + `hold_id` int(11) NOT null COMMENT 'ID of the hold', + `creation_date` timestamp NULL DEFAULT NULL COMMENT 'Time and date the cancellation request was created', + PRIMARY KEY (`hold_cancellation_request_id`) + ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; + }); + } + }, +}; --- a/installer/data/mysql/kohastructure.sql +++ a/installer/data/mysql/kohastructure.sql @@ -4419,6 +4419,21 @@ CREATE TABLE `reserves` ( ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; /*!40101 SET character_set_client = @saved_cs_client */; +-- +-- Table structure for table `hold_cancellation_requests` +-- + +DROP TABLE IF EXISTS `hold_cancellation_requests`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!40101 SET character_set_client = utf8 */; +CREATE TABLE `hold_cancellation_requests` ( + `hold_cancellation_request_id` int(11) NOT NULL AUTO_INCREMENT COMMENT 'Unique ID of the cancellation request', + `hold_id` int(11) NOT null COMMENT 'ID of the hold', + `creation_date` timestamp NULL DEFAULT NULL COMMENT 'Time and date the cancellation request was created', + PRIMARY KEY (`hold_cancellation_request_id`) +) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; +/*!40101 SET character_set_client = @saved_cs_client */; + -- -- Table structure for table `return_claims` -- --