From 33021aa214fc9d5de447ff7b676949271a0a95b1 Mon Sep 17 00:00:00 2001 From: Paul Derscheid Date: Fri, 18 Oct 2024 10:33:38 +0000 Subject: [PATCH] Bug 35906: (QA follow-up) Correct type on added bookable column Signed-off-by: Paul Derscheid Signed-off-by: Katrin Fischer --- Koha/Schema/Result/Itemtype.pm | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Koha/Schema/Result/Itemtype.pm b/Koha/Schema/Result/Itemtype.pm index c4058b9dbc..b900e8dc32 100644 --- a/Koha/Schema/Result/Itemtype.pm +++ b/Koha/Schema/Result/Itemtype.pm @@ -343,7 +343,7 @@ __PACKAGE__->add_columns( '+notforloan' => { is_boolean => 1 }, '+rentalcharge_daily_calendar' => { is_boolean => 1 }, '+rentalcharge_hourly_calendar' => { is_boolean => 1 }, - '+bookable' => { integer => 1 }, + '+bookable' => { is_boolean => 1, is_nullable => 1 }, ); # Use the ItemtypeLocalization view to create the join on localization -- 2.39.5