From 149f96f8cae87f518c008dd110648fcade791a60 Mon Sep 17 00:00:00 2001 From: Kyle M Hall Date: Tue, 29 Dec 2015 19:13:25 +0000 Subject: [PATCH] Bug 14695 - Update DB Schema file --- Koha/Schema/Result/Issuingrule.pm | 12 ++++++++++-- 1 file changed, 10 insertions(+), 2 deletions(-) diff --git a/Koha/Schema/Result/Issuingrule.pm b/Koha/Schema/Result/Issuingrule.pm index ff1617b..bc6087b 100644 --- a/Koha/Schema/Result/Issuingrule.pm +++ b/Koha/Schema/Result/Issuingrule.pm @@ -159,6 +159,12 @@ __PACKAGE__->table("issuingrules"); default_value: 0 is_nullable: 0 +=head2 holds_per_record + + data_type: 'smallint' + default_value: 1 + is_nullable: 0 + =head2 branchcode data_type: 'varchar' @@ -241,6 +247,8 @@ __PACKAGE__->add_columns( { data_type => "tinyint", default_value => 0, is_nullable => 1 }, "reservesallowed", { data_type => "smallint", default_value => 0, is_nullable => 0 }, + "holds_per_record", + { data_type => "smallint", default_value => 1, is_nullable => 0 }, "branchcode", { data_type => "varchar", default_value => "", is_nullable => 0, size => 10 }, "overduefinescap", @@ -268,8 +276,8 @@ __PACKAGE__->add_columns( __PACKAGE__->set_primary_key("branchcode", "categorycode", "itemtype"); -# Created by DBIx::Class::Schema::Loader v0.07039 @ 2015-10-22 14:50:45 -# DO NOT MODIFY THIS OR ANYTHING ABOVE! md5sum:jTYQaXLtBrSIGEqpFlgIfg +# Created by DBIx::Class::Schema::Loader v0.07042 @ 2015-12-28 16:26:37 +# DO NOT MODIFY THIS OR ANYTHING ABOVE! md5sum:/3xm7W/T/nWlYVlokMTgjQ # You can replace this text with custom content, and it will be preserved on regeneration -- 2.1.4