From 8b7d20525a60d592f3cc42cd912d2bac09d6b7a9 Mon Sep 17 00:00:00 2001 From: Martin Renvoize Date: Tue, 20 Jan 2026 12:21:19 +0000 Subject: [PATCH] Bug 41649: DBIC Schema boolean update --- Koha/Schema/Result/Itemtype.pm | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/Koha/Schema/Result/Itemtype.pm b/Koha/Schema/Result/Itemtype.pm index 840e4b97603..9be7c98733e 100644 --- a/Koha/Schema/Result/Itemtype.pm +++ b/Koha/Schema/Result/Itemtype.pm @@ -375,11 +375,12 @@ __PACKAGE__->has_many( __PACKAGE__->add_columns( '+automatic_checkin' => { is_boolean => 1 }, + '+bookable' => { is_boolean => 1, is_nullable => 1 }, '+hideinopac' => { is_boolean => 1 }, '+notforloan' => { is_boolean => 1 }, '+rentalcharge_daily_calendar' => { is_boolean => 1 }, '+rentalcharge_hourly_calendar' => { is_boolean => 1 }, - '+bookable' => { is_boolean => 1, is_nullable => 1 }, + '+sip_magnetic' => { is_boolean => 1 }, ); # Use the ItemtypeLocalization view to create the join on localization -- 2.52.0