From 1bff427d05ef46d7309be58e63fb0e33fd05d807 Mon Sep 17 00:00:00 2001 From: Tomas Cohen Arazi Date: Mon, 18 Apr 2022 10:45:02 -0300 Subject: [PATCH] Bug 22456: Add cancellation request table This patch adds a new table, for storing holds cancellation requests, and managing them afterwards. The *hold_id* attribute is not made a FK on the reserves table because of the old_reserves thing we still do (see bug 25260 for a discussion about it). Sponsored-by: Montgomery County Public Libraries Signed-off-by: David Nind --- .../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 diff --git a/installer/data/mysql/atomicupdate/bug_22456.pl b/installer/data/mysql/atomicupdate/bug_22456.pl new file mode 100755 index 0000000000..3d094a5fdb --- /dev/null +++ b/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; + }); + } + }, +}; diff --git a/installer/data/mysql/kohastructure.sql b/installer/data/mysql/kohastructure.sql index 51b6241c07..c26345e257 100644 --- a/installer/data/mysql/kohastructure.sql +++ b/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` -- -- 2.34.1