From be5cc1c595c88c93e8b6bfedba7cd1906fa107fc 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 --- 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 3402bd8dba..428112629d 100644 --- a/Koha/Schema/Result/Category.pm +++ b/Koha/Schema/Result/Category.pm @@ -200,6 +200,15 @@ Cost for article scan request =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 }, @@ -262,6 +271,8 @@ __PACKAGE__->add_columns( { data_type => "tinyint", is_nullable => 1 }, "article_request_fee", { data_type => "decimal", is_nullable => 1, size => [28, 6] }, + "article_request_limit", + { data_type => "tinyint", is_nullable => 1 }, ); =head1 PRIMARY KEY -- 2.20.1