From b4e99e35a2f627cb5545a10dbc4769e3bf0e6fb4 Mon Sep 17 00:00:00 2001 From: Jacob O'Mara Date: Wed, 15 Jan 2025 14:53:57 +0000 Subject: [PATCH] Bug 38924: Add patron_quotas table Add the new patron_quotas table for storing circulation quotas --- .../atomicupdate/bug_38924-patron_quotas.pl | 33 +++++++++++++++++++ installer/data/mysql/kohastructure.sql | 22 +++++++++++++ 2 files changed, 55 insertions(+) create mode 100755 installer/data/mysql/atomicupdate/bug_38924-patron_quotas.pl diff --git a/installer/data/mysql/atomicupdate/bug_38924-patron_quotas.pl b/installer/data/mysql/atomicupdate/bug_38924-patron_quotas.pl new file mode 100755 index 00000000000..848fe85c668 --- /dev/null +++ b/installer/data/mysql/atomicupdate/bug_38924-patron_quotas.pl @@ -0,0 +1,33 @@ +use Modern::Perl; +use Koha::Installer::Output qw(say_warning say_success say_info); + +return { + bug_number => "38924", + description => "Add patron quota table", + up => sub { + my ($args) = @_; + my ( $dbh, $out ) = @$args{qw(dbh out)}; + + unless ( TableExists('patron_quota') ) { + $dbh->do( + q{ + CREATE TABLE `patron_quota` ( + `id` int(11) NOT NULL AUTO_INCREMENT COMMENT 'unique identifier for the quota record', + `description` longtext NOT NULL COMMENT 'user friendly description for the quota record', + `patron_id` int(11) NOT NULL COMMENT 'foreign key linking to borrowers.borrowernumber', + `allocation` int(11) NOT NULL DEFAULT 0 COMMENT 'total quota allocation for the period', + `used` int(11) NOT NULL DEFAULT 0 COMMENT 'amount of allocation used for current period', + `start_date` date NOT NULL COMMENT 'start date of the allocation period', + `end_date` date NOT NULL COMMENT 'end date of the allocation period', + PRIMARY KEY (`id`), + KEY `patron_quota_ibfk_1` (`patron_id`), + CONSTRAINT `patron_quota_ibfk_1` 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 table created successfully" ); + } else { + say_info( $out, "Patron quota table already exists" ); + } + }, +}; diff --git a/installer/data/mysql/kohastructure.sql b/installer/data/mysql/kohastructure.sql index 5440bd82fd2..49fa14323a6 100644 --- a/installer/data/mysql/kohastructure.sql +++ b/installer/data/mysql/kohastructure.sql @@ -6788,6 +6788,28 @@ CREATE TABLE `zebraqueue` ( /*!40101 SET character_set_client = @saved_cs_client */; /*!40103 SET TIME_ZONE=@OLD_TIME_ZONE */; +-- +-- Table structure for table `patron_quota` +-- + +DROP TABLE IF EXISTS `patron_quota`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!40101 SET character_set_client = utf8 */; +CREATE TABLE `patron_quota` ( + `id` int(11) NOT NULL AUTO_INCREMENT COMMENT 'unique identifier for the quota record', + `description` longtext NOT NULL COMMENT 'user friendly description for the quota record', + `patron_id` int(11) NOT NULL COMMENT 'foreign key linking to borrowers.borrowernumber', + `allocation` int(11) NOT NULL DEFAULT 0 COMMENT 'total quota allocation for the period', + `used` int(11) NOT NULL DEFAULT 0 COMMENT 'amount of allocation used for current period', + `start_date` date NOT NULL COMMENT 'start date of the allocation period', + `end_date` date NOT NULL COMMENT 'end date of the allocation period', + PRIMARY KEY (`id`), + KEY `patron_quota_ibfk_1` (`patron_id`), + CONSTRAINT `patron_quota_ibfk_1` 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