From a036af882a45f51fd0ce2e8b4ddd85fb51d2e687 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 Signed-off-by: Nick Clemens --- 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 f782456..50417e2 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' @@ -247,6 +253,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", @@ -276,8 +284,8 @@ __PACKAGE__->add_columns( __PACKAGE__->set_primary_key("branchcode", "categorycode", "itemtype"); -# Created by DBIx::Class::Schema::Loader v0.07042 @ 2015-12-31 15:26:16 -# DO NOT MODIFY THIS OR ANYTHING ABOVE! md5sum:K/8SKpDjba5CM4+WPZtWPw +# 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