From 6ef4be6620439aaba63b386ee32018f5f0d193b2 Mon Sep 17 00:00:00 2001 From: Tomas Cohen Arazi Date: Mon, 24 Sep 2018 12:21:45 -0300 Subject: [PATCH] Bug 15486: DBIC update MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Signed-off-by: Tomas Cohen Arazi Signed-off-by: Séverine QUEUNE Signed-off-by: Josef Moravec --- Koha/Schema/Result/Issuingrule.pm | 11 +++++++++-- 1 file changed, 9 insertions(+), 2 deletions(-) diff --git a/Koha/Schema/Result/Issuingrule.pm b/Koha/Schema/Result/Issuingrule.pm index 5958055..1bdadf1 100644 --- a/Koha/Schema/Result/Issuingrule.pm +++ b/Koha/Schema/Result/Issuingrule.pm @@ -182,6 +182,11 @@ __PACKAGE__->table("issuingrules"); default_value: 1 is_nullable: 0 +=head2 holds_per_day + + data_type: 'smallint' + is_nullable: 1 + =head2 branchcode data_type: 'varchar' @@ -285,6 +290,8 @@ __PACKAGE__->add_columns( { data_type => "smallint", default_value => 0, is_nullable => 0 }, "holds_per_record", { data_type => "smallint", default_value => 1, is_nullable => 0 }, + "holds_per_day", + { data_type => "smallint", is_nullable => 1 }, "branchcode", { data_type => "varchar", default_value => "", is_nullable => 0, size => 10 }, "overduefinescap", @@ -321,8 +328,8 @@ __PACKAGE__->add_columns( __PACKAGE__->set_primary_key("branchcode", "categorycode", "itemtype"); -# Created by DBIx::Class::Schema::Loader v0.07042 @ 2017-12-13 12:44:30 -# DO NOT MODIFY THIS OR ANYTHING ABOVE! md5sum:VBD8atc/D/6rN0D+aTaSOQ +# Created by DBIx::Class::Schema::Loader v0.07042 @ 2018-09-17 01:27:01 +# DO NOT MODIFY THIS OR ANYTHING ABOVE! md5sum:LC04yqfB1tXpaQxSrYbHtw # You can replace this text with custom code or comments, and it will be preserved on regeneration -- 2.1.4