From ccbbb0177613d25b9ec0d2fe2c62d1281ae77b6a Mon Sep 17 00:00:00 2001 From: Kyle M Hall Date: Thu, 14 Jun 2018 12:10:09 +0000 Subject: [PATCH] Bug 20912: Update schema file Signed-off-by: Matha Fuerst --- 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 0e36247b50..d3de5c153a 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", @@ -211,8 +219,8 @@ __PACKAGE__->has_many( ); -# Created by DBIx::Class::Schema::Loader v0.07042 @ 2018-02-16 17:54:54 -# DO NOT MODIFY THIS OR ANYTHING ABOVE! md5sum:cNP7/nYGdVeKZ8L7sp1+FQ +# Created by DBIx::Class::Schema::Loader v0.07042 @ 2018-06-14 11:21:39 +# DO NOT MODIFY THIS OR ANYTHING ABOVE! md5sum:9j9PsV2VzuB2SaBf5MZSmw # Use the ItemtypeLocalization view to create the join on localization our $LANGUAGE; -- 2.11.0