From 482755cd876c3677301132c8ebf5eca49d680b2a Mon Sep 17 00:00:00 2001
From: Kyle M Hall <kyle@bywatersolutions.com>
Date: Mon, 9 Mar 2020 13:13:46 -0400
Subject: [PATCH] Bug 21443: Update Schema [DO NOT PUSH]

Signed-off-by: Kyle M Hall <kyle@bywatersolutions.com>

Signed-off-by: Marti Fuerst <mfuerst@hmcpl.org>
---
 Koha/Schema/Result/Itemtype.pm | 20 ++++++++++++++++++--
 1 file changed, 18 insertions(+), 2 deletions(-)

diff --git a/Koha/Schema/Result/Itemtype.pm b/Koha/Schema/Result/Itemtype.pm
index 073c527b7b..d9a740ff9d 100644
--- a/Koha/Schema/Result/Itemtype.pm
+++ b/Koha/Schema/Result/Itemtype.pm
@@ -47,12 +47,24 @@ __PACKAGE__->table("itemtypes");
   is_nullable: 1
   size: [28,6]
 
+=head2 rentalcharge_daily_calendar
+
+  data_type: 'tinyint'
+  default_value: 1
+  is_nullable: 0
+
 =head2 rentalcharge_hourly
 
   data_type: 'decimal'
   is_nullable: 1
   size: [28,6]
 
+=head2 rentalcharge_hourly_calendar
+
+  data_type: 'tinyint'
+  default_value: 1
+  is_nullable: 0
+
 =head2 defaultreplacecost
 
   data_type: 'decimal'
@@ -123,8 +135,12 @@ __PACKAGE__->add_columns(
   { data_type => "decimal", is_nullable => 1, size => [28, 6] },
   "rentalcharge_daily",
   { data_type => "decimal", is_nullable => 1, size => [28, 6] },
+  "rentalcharge_daily_calendar",
+  { data_type => "tinyint", default_value => 1, is_nullable => 0 },
   "rentalcharge_hourly",
   { data_type => "decimal", is_nullable => 1, size => [28, 6] },
+  "rentalcharge_hourly_calendar",
+  { data_type => "tinyint", default_value => 1, is_nullable => 0 },
   "defaultreplacecost",
   { data_type => "decimal", is_nullable => 1, size => [28, 6] },
   "processfee",
@@ -227,8 +243,8 @@ __PACKAGE__->has_many(
 );
 
 
-# Created by DBIx::Class::Schema::Loader v0.07048 @ 2019-07-04 04:56:48
-# DO NOT MODIFY THIS OR ANYTHING ABOVE! md5sum:Qo6jabJSQGeYJ542ebSJfg
+# Created by DBIx::Class::Schema::Loader v0.07046 @ 2020-03-09 17:13:18
+# DO NOT MODIFY THIS OR ANYTHING ABOVE! md5sum:7ojvTzsDvdHPAJMwJrAZ7A
 
 # Use the ItemtypeLocalization view to create the join on localization
 our $LANGUAGE;
-- 
2.21.1 (Apple Git-122.3)