From 6ea5c3d5e71b3c772b78a9abe5d7014d53384d1c Mon Sep 17 00:00:00 2001 From: Jacob O'Mara Date: Wed, 15 Jan 2025 14:55:20 +0000 Subject: [PATCH] Bug 38924: DBIC Schema DBIC update --- Koha/Schema/Result/Borrower.pm | 19 ++++- Koha/Schema/Result/PatronQuota.pm | 135 ++++++++++++++++++++++++++++++ 2 files changed, 152 insertions(+), 2 deletions(-) create mode 100644 Koha/Schema/Result/PatronQuota.pm diff --git a/Koha/Schema/Result/Borrower.pm b/Koha/Schema/Result/Borrower.pm index e6ec93cbb32..b8a3e2f2d76 100644 --- a/Koha/Schema/Result/Borrower.pm +++ b/Koha/Schema/Result/Borrower.pm @@ -1706,6 +1706,21 @@ __PACKAGE__->has_many( { cascade_copy => 0, cascade_delete => 0 }, ); +=head2 patron_quotas + +Type: has_many + +Related object: L + +=cut + +__PACKAGE__->has_many( + "patron_quotas", + "Koha::Schema::Result::PatronQuota", + { "foreign.patron_id" => "self.borrowernumber" }, + { cascade_copy => 0, cascade_delete => 0 }, +); + =head2 patronimage Type: might_have @@ -2197,8 +2212,8 @@ Composing rels: L -> permission __PACKAGE__->many_to_many("permissions", "user_permissions", "permission"); -# Created by DBIx::Class::Schema::Loader v0.07051 @ 2024-11-11 11:07:06 -# DO NOT MODIFY THIS OR ANYTHING ABOVE! md5sum:wJkyjCy8MXEe2ZZCxszAMQ +# Created by DBIx::Class::Schema::Loader v0.07051 @ 2025-01-15 14:23:33 +# DO NOT MODIFY THIS OR ANYTHING ABOVE! md5sum:owrnW20RwWMMM8VZtH1yUw __PACKAGE__->belongs_to( "library", diff --git a/Koha/Schema/Result/PatronQuota.pm b/Koha/Schema/Result/PatronQuota.pm new file mode 100644 index 00000000000..1ca93cd7480 --- /dev/null +++ b/Koha/Schema/Result/PatronQuota.pm @@ -0,0 +1,135 @@ +use utf8; +package Koha::Schema::Result::PatronQuota; + +# Created by DBIx::Class::Schema::Loader +# DO NOT MODIFY THE FIRST PART OF THIS FILE + +=head1 NAME + +Koha::Schema::Result::PatronQuota + +=cut + +use strict; +use warnings; + +use base 'DBIx::Class::Core'; + +=head1 TABLE: C + +=cut + +__PACKAGE__->table("patron_quota"); + +=head1 ACCESSORS + +=head2 id + + data_type: 'integer' + is_auto_increment: 1 + is_nullable: 0 + +unique identifier for the quota record + +=head2 description + + data_type: 'longtext' + is_nullable: 0 + +user friendly description for the quota record + +=head2 patron_id + + data_type: 'integer' + is_foreign_key: 1 + is_nullable: 0 + +foreign key linking to borrowers.borrowernumber + +=head2 allocation + + data_type: 'integer' + default_value: 0 + is_nullable: 0 + +total quota allocation for the period + +=head2 used + + data_type: 'integer' + default_value: 0 + is_nullable: 0 + +amount of allocation used for current period + +=head2 start_date + + data_type: 'date' + datetime_undef_if_invalid: 1 + is_nullable: 0 + +start date of the allocation period + +=head2 end_date + + data_type: 'date' + datetime_undef_if_invalid: 1 + is_nullable: 0 + +end date of the allocation period + +=cut + +__PACKAGE__->add_columns( + "id", + { data_type => "integer", is_auto_increment => 1, is_nullable => 0 }, + "description", + { data_type => "longtext", is_nullable => 0 }, + "patron_id", + { data_type => "integer", is_foreign_key => 1, is_nullable => 0 }, + "allocation", + { data_type => "integer", default_value => 0, is_nullable => 0 }, + "used", + { data_type => "integer", default_value => 0, is_nullable => 0 }, + "start_date", + { data_type => "date", datetime_undef_if_invalid => 1, is_nullable => 0 }, + "end_date", + { data_type => "date", datetime_undef_if_invalid => 1, is_nullable => 0 }, +); + +=head1 PRIMARY KEY + +=over 4 + +=item * L + +=back + +=cut + +__PACKAGE__->set_primary_key("id"); + +=head1 RELATIONS + +=head2 patron + +Type: belongs_to + +Related object: L + +=cut + +__PACKAGE__->belongs_to( + "patron", + "Koha::Schema::Result::Borrower", + { borrowernumber => "patron_id" }, + { is_deferrable => 1, on_delete => "CASCADE", on_update => "CASCADE" }, +); + + +# Created by DBIx::Class::Schema::Loader v0.07051 @ 2025-01-30 13:56:19 +# DO NOT MODIFY THIS OR ANYTHING ABOVE! md5sum:4NGr+IaPuboW4p8f1v+6Ng + + +# You can replace this text with custom code or comments, and it will be preserved on regeneration +1; -- 2.48.1