From a3b9816313b52a21d5a1fff0fa71c93921969d96 Mon Sep 17 00:00:00 2001
From: Kyle M Hall <kyle@bywatersolutions.com>
Date: Mon, 23 Mar 2020 06:50:05 -0400
Subject: [PATCH] Bug 21443: Mark new column as boolean in schema file
Signed-off-by: Kyle M Hall <kyle@bywatersolutions.com>
---
Koha/Schema/Result/Itemtype.pm | 4 ++++
1 file changed, 4 insertions(+)
diff --git a/Koha/Schema/Result/Itemtype.pm b/Koha/Schema/Result/Itemtype.pm
index d9a740ff9d..e4748e49e5 100644
--- a/Koha/Schema/Result/Itemtype.pm
+++ b/Koha/Schema/Result/Itemtype.pm
@@ -246,6 +246,10 @@ __PACKAGE__->has_many(
# Created by DBIx::Class::Schema::Loader v0.07046 @ 2020-03-09 17:13:18
# DO NOT MODIFY THIS OR ANYTHING ABOVE! md5sum:7ojvTzsDvdHPAJMwJrAZ7A
+__PACKAGE__->add_columns(
+ '+rentalcharge_daily_calendar' => { is_boolean => 1 },
+);
+
# Use the ItemtypeLocalization view to create the join on localization
our $LANGUAGE;
__PACKAGE__->has_many(
--
2.21.1 (Apple Git-122.3)