From bda819fb3843b8ab397766cc5d2306419143ec54 Mon Sep 17 00:00:00 2001 From: Kyle M Hall Date: Thu, 25 Oct 2018 08:42:07 -0400 Subject: [PATCH] Bug 20912: Update schema file Signed-off-by: Martin Renvoize Signed-off-by: Kyle M Hall Signed-off-by: Tomas Cohen Arazi --- Koha/Schema/Result/Itemtype.pm | 12 ++++++++++-- 1 file changed, 10 insertions(+), 2 deletions(-) diff --git a/Koha/Schema/Result/Itemtype.pm b/Koha/Schema/Result/Itemtype.pm index fdd507da6c..a7c84f1046 100644 --- a/Koha/Schema/Result/Itemtype.pm +++ b/Koha/Schema/Result/Itemtype.pm @@ -41,6 +41,12 @@ __PACKAGE__->table("itemtypes"); is_nullable: 1 size: [28,6] +=head2 rental_charge_daily + + data_type: 'decimal' + is_nullable: 1 + size: [28,6] + =head2 defaultreplacecost data_type: 'decimal' @@ -109,6 +115,8 @@ __PACKAGE__->add_columns( { data_type => "longtext", is_nullable => 1 }, "rentalcharge", { data_type => "decimal", is_nullable => 1, size => [28, 6] }, + "rental_charge_daily", + { data_type => "decimal", is_nullable => 1, size => [28, 6] }, "defaultreplacecost", { data_type => "decimal", is_nullable => 1, size => [28, 6] }, "processfee", @@ -226,8 +234,8 @@ __PACKAGE__->has_many( ); -# Created by DBIx::Class::Schema::Loader v0.07042 @ 2018-10-05 14:29:17 -# DO NOT MODIFY THIS OR ANYTHING ABOVE! md5sum:GthTVMBLO5Zi6NU3up3m+A +# Created by DBIx::Class::Schema::Loader v0.07046 @ 2018-10-25 12:41:04 +# DO NOT MODIFY THIS OR ANYTHING ABOVE! md5sum:Iyb9JKB8gdyZPtZloHVxSQ # Use the ItemtypeLocalization view to create the join on localization our $LANGUAGE; -- 2.20.1