From b44beff7e1861fb803f98746208176d2298916e5 Mon Sep 17 00:00:00 2001 From: Kyle Hall Date: Wed, 31 Aug 2022 12:52:29 -0400 Subject: [PATCH] Bug 31500: Update Scheme file [DO NOT PUSH] Signed-off-by: Andrew Fuerste-Henry --- Koha/Schema/Result/Category.pm | 13 +++++++++++-- 1 file changed, 11 insertions(+), 2 deletions(-) diff --git a/Koha/Schema/Result/Category.pm b/Koha/Schema/Result/Category.pm index ca935d98e2..758568b5cb 100644 --- a/Koha/Schema/Result/Category.pm +++ b/Koha/Schema/Result/Category.pm @@ -205,6 +205,13 @@ set required password strength for patrons in this category Exclude patrons of this category from local holds priority +=head2 reserves_max_pickup_delay + + data_type: 'smallint' + is_nullable: 1 + +override ReservesMaxPickUpDelay for this patron category + =cut __PACKAGE__->add_columns( @@ -271,6 +278,8 @@ __PACKAGE__->add_columns( { data_type => "tinyint", is_nullable => 1 }, "exclude_from_local_holds_priority", { data_type => "tinyint", is_nullable => 1 }, + "reserves_max_pickup_delay", + { data_type => "smallint", is_nullable => 1 }, ); =head1 PRIMARY KEY @@ -363,8 +372,8 @@ __PACKAGE__->has_many( ); -# Created by DBIx::Class::Schema::Loader v0.07049 @ 2022-06-23 16:29:27 -# DO NOT MODIFY THIS OR ANYTHING ABOVE! md5sum:SKWF2QpqQtXoujwurKFQhA +# Created by DBIx::Class::Schema::Loader v0.07049 @ 2022-08-31 12:15:05 +# DO NOT MODIFY THIS OR ANYTHING ABOVE! md5sum:GUjG1ECqZ6Hqd+wAjtozYg sub koha_object_class { 'Koha::Patron::Category'; -- 2.30.2