From 966862729c9627cd36b2fd59b0cf48c233063ec6 Mon Sep 17 00:00:00 2001 From: Jacob O'Mara Date: Thu, 30 Jan 2025 16:14:55 +0000 Subject: [PATCH] Bug 38924: Add patron_quota_usage table Add the new patron_quota_usage table for recording usage of quota allocations against user issues. --- .../atomicupdate/bug_38924-patron_quotas.pl | 24 ++++++++++++++++++- installer/data/mysql/kohastructure.sql | 21 ++++++++++++++++ 2 files changed, 44 insertions(+), 1 deletion(-) diff --git a/installer/data/mysql/atomicupdate/bug_38924-patron_quotas.pl b/installer/data/mysql/atomicupdate/bug_38924-patron_quotas.pl index a6531fbb1ab..161f3d1511b 100755 --- a/installer/data/mysql/atomicupdate/bug_38924-patron_quotas.pl +++ b/installer/data/mysql/atomicupdate/bug_38924-patron_quotas.pl @@ -3,7 +3,7 @@ use Koha::Installer::Output qw(say_warning say_success say_info); return { bug_number => "38924", - description => "Add patron quota table and permissions", + description => "Add patron quota and quota_usage tables and permissions", up => sub { my ($args) = @_; my ( $dbh, $out ) = @$args{qw(dbh out)}; @@ -36,5 +36,27 @@ return { } else { say_info( $out, "Patron quota table already exists" ); } + + unless ( TableExists('patron_quota_usage') ) + { + $dbh->do(q{ + CREATE TABLE `patron_quota_usage` ( + `id` int(11) NOT NULL AUTO_INCREMENT COMMENT 'unique identifier for quota usage record', + `patron_quota_id` int(11) NOT NULL COMMENT 'foreign key linking to patron_quota.id', + `issue_id` int(11) DEFAULT NULL COMMENT 'linking to issues.issue_id or old_issues.issue_id', + `patron_id` int(11) NOT NULL COMMENT 'foreign key linking to borrowers.borrowernumber', + PRIMARY KEY (`id`), + KEY `patron_quota_usage_ibfk_1` (`patron_quota_id`), + + KEY `patron_quota_usage_ibfk_2` (`patron_id`), + CONSTRAINT `patron_quota_usage_ibfk_1` FOREIGN KEY (`patron_quota_id`) REFERENCES `patron_quota` (`id`) ON DELETE CASCADE ON UPDATE CASCADE, + CONSTRAINT `patron_quota_usage_ibfk_2` FOREIGN KEY (`patron_id`) REFERENCES `borrowers` (`borrowernumber`) ON DELETE CASCADE ON UPDATE CASCADE + ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; + }); + + say_success( $out, "Patron quota usage table created successfully" ); + } else { + say_info( $out, "Patron quota usage table already exists" ); + } }, }; diff --git a/installer/data/mysql/kohastructure.sql b/installer/data/mysql/kohastructure.sql index 49fa14323a6..143e29a0cd3 100644 --- a/installer/data/mysql/kohastructure.sql +++ b/installer/data/mysql/kohastructure.sql @@ -6810,6 +6810,27 @@ CREATE TABLE `patron_quota` ( /*!40101 SET character_set_client = @saved_cs_client */; /*!40103 SET TIME_ZONE=@OLD_TIME_ZONE */; +-- +-- Table structure for table `patron_quota_usage` +-- + +DROP TABLE IF EXISTS `patron_quota_usage`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!40101 SET character_set_client = utf8 */; +CREATE TABLE `patron_quota_usage` ( + `id` int(11) NOT NULL AUTO_INCREMENT COMMENT 'unique identifier for quota usage record', + `patron_quota_id` int(11) NOT NULL COMMENT 'foreign key linking to patron_quota.id', + `issue_id` int(11) DEFAULT NULL COMMENT 'linking to issues.issue_id or old_issues.issue_id', + `patron_id` int(11) NOT NULL COMMENT 'foreign key linking to borrowers.borrowernumber', + PRIMARY KEY (`id`), + KEY `patron_quota_usage_ibfk_1` (`patron_quota_id`), + KEY `patron_quota_usage_ibfk_2` (`patron_id`), + CONSTRAINT `patron_quota_usage_ibfk_1` FOREIGN KEY (`patron_quota_id`) REFERENCES `patron_quota` (`id`) ON DELETE CASCADE ON UPDATE CASCADE, + CONSTRAINT `patron_quota_usage_ibfk_2` FOREIGN KEY (`patron_id`) REFERENCES `borrowers` (`borrowernumber`) ON DELETE CASCADE ON UPDATE CASCADE +) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; +/*!40101 SET character_set_client = @saved_cs_client */; +/*!40103 SET TIME_ZONE=@OLD_TIME_ZONE */; + /*!40101 SET SQL_MODE=@OLD_SQL_MODE */; /*!40014 SET FOREIGN_KEY_CHECKS=@OLD_FOREIGN_KEY_CHECKS */; /*!40014 SET UNIQUE_CHECKS=@OLD_UNIQUE_CHECKS */; -- 2.48.1