From 59daccdb7c50fad8bdfa9c0d92bdc47b9dcee5b9 Mon Sep 17 00:00:00 2001 From: Agustin Moyano Date: Thu, 22 Jul 2021 01:26:19 +0000 Subject: [PATCH] Bug 27945: [DO NOT PUSH] Update DBIx schema Signed-off-by: David Nind Signed-off-by: Marcel de Rooy --- Koha/Schema/Result/Category.pm | 11 +++++++++++ 1 file changed, 11 insertions(+) diff --git a/Koha/Schema/Result/Category.pm b/Koha/Schema/Result/Category.pm index 9cd2dc71ae..42671be82c 100644 --- a/Koha/Schema/Result/Category.pm +++ b/Koha/Schema/Result/Category.pm @@ -192,6 +192,15 @@ Exclude patrons of this category from local holds priority =cut +=head2 article_request_limit + + data_type: 'tinyint' + is_nullable: 1 + +Limit article scan requests per day + +=cut + __PACKAGE__->add_columns( "categorycode", { data_type => "varchar", default_value => "", is_nullable => 0, size => 10 }, @@ -252,6 +261,8 @@ __PACKAGE__->add_columns( { data_type => "tinyint", is_nullable => 1 }, "exclude_from_local_holds_priority", { data_type => "tinyint", is_nullable => 1 }, + "article_request_limit", + { data_type => "tinyint", is_nullable => 1 }, ); =head1 PRIMARY KEY -- 2.30.2