From 6b1b2be4c3fa65a9b3f65b368b2b9a9439ab3db9 Mon Sep 17 00:00:00 2001 From: Agustin Moyano Date: Fri, 4 Dec 2020 18:47:31 -0300 Subject: [PATCH] Bug 23207: Set automatic_checkin column as boolean in Itemtype schema Signed-off-by: Andrew Fuerste-Henry Signed-off-by: Hasina Akhter Signed-off-by: Martin Renvoize Signed-off-by: Jonathan Druart --- Koha/Schema/Result/Itemtype.pm | 1 + 1 file changed, 1 insertion(+) diff --git a/Koha/Schema/Result/Itemtype.pm b/Koha/Schema/Result/Itemtype.pm index 266f19ee0f..9413f5b279 100644 --- a/Koha/Schema/Result/Itemtype.pm +++ b/Koha/Schema/Result/Itemtype.pm @@ -329,6 +329,7 @@ __PACKAGE__->has_many( __PACKAGE__->add_columns( '+rentalcharge_hourly_calendar' => { is_boolean => 1 }, '+rentalcharge_daily_calendar' => { is_boolean => 1 }, + '+automatic_checkin' => { is_boolean => 1 }, ); # Use the ItemtypeLocalization view to create the join on localization -- 2.39.2