@@ -, +, @@ --- Koha/Schema/Result/Category.pm | 11 +++++++++++ 1 file changed, 11 insertions(+) --- a/Koha/Schema/Result/Category.pm +++ a/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 --