From cfdcebb2e8a5286a04ed392029f6717a4438b061 Mon Sep 17 00:00:00 2001 From: Kyle M Hall Date: Thu, 22 Oct 2015 06:39:37 -0400 Subject: [PATCH] [PASSED QA] Bug 9129 - Update schema Signed-off-by: Cindy Murdock Ames Signed-off-by: Katrin Fischer --- Koha/Schema/Result/Issuingrule.pm | 14 +++++++++++--- 1 file changed, 11 insertions(+), 3 deletions(-) diff --git a/Koha/Schema/Result/Issuingrule.pm b/Koha/Schema/Result/Issuingrule.pm index 43a836a..55e104b 100644 --- a/Koha/Schema/Result/Issuingrule.pm +++ b/Koha/Schema/Result/Issuingrule.pm @@ -172,6 +172,12 @@ __PACKAGE__->table("issuingrules"); is_nullable: 1 size: [28,6] +=head2 cap_fine_to_replacement_price + + data_type: 'tinyint' + default_value: 0 + is_nullable: 0 + =head2 onshelfholds data_type: 'tinyint' @@ -245,6 +251,8 @@ __PACKAGE__->add_columns( { data_type => "varchar", default_value => "", is_nullable => 0, size => 10 }, "overduefinescap", { data_type => "decimal", is_nullable => 1, size => [28, 6] }, + "cap_fine_to_replacement_price", + { data_type => "tinyint", default_value => 0, is_nullable => 0 }, "onshelfholds", { data_type => "tinyint", default_value => 0, is_nullable => 0 }, "opacitemholds", @@ -268,9 +276,9 @@ __PACKAGE__->add_columns( __PACKAGE__->set_primary_key("branchcode", "categorycode", "itemtype"); -# Created by DBIx::Class::Schema::Loader v0.07042 @ 2015-05-13 17:48:39 -# DO NOT MODIFY THIS OR ANYTHING ABOVE! md5sum:H6LuTmUWdqmjCc5L4hsTQA +# Created by DBIx::Class::Schema::Loader v0.07040 @ 2015-10-22 06:35:51 +# DO NOT MODIFY THIS OR ANYTHING ABOVE! md5sum:qvn/m/Ps7HMJG8JyVx8B2Q -# You can replace this text with custom content, and it will be preserved on regeneration +# You can replace this text with custom code or comments, and it will be preserved on regeneration 1; -- 1.9.1