From b501a585ab87fcb335b16019e9e71f8baf7b0b7f Mon Sep 17 00:00:00 2001 From: Sam Lau Date: Fri, 21 Jun 2024 17:51:56 +0000 Subject: [PATCH] Bug 33462: Manual Schema Changes (define as boolean) Signed-off-by: Laura_Escamilla Signed-off-by: Olivier V Signed-off-by: Kyle M Hall Signed-off-by: Katrin Fischer --- Koha/Schema/Result/Category.pm | 9 +++++---- 1 file changed, 5 insertions(+), 4 deletions(-) diff --git a/Koha/Schema/Result/Category.pm b/Koha/Schema/Result/Category.pm index f7dd0fbf75..0dc6d41f8c 100644 --- a/Koha/Schema/Result/Category.pm +++ b/Koha/Schema/Result/Category.pm @@ -405,10 +405,11 @@ sub koha_objects_class { } __PACKAGE__->add_columns( - '+can_be_guarantee' => { is_boolean => 1 }, - '+can_place_ill_in_opac' => { is_boolean => 1 }, - '+exclude_from_local_holds_priority' => { is_boolean => 1 }, - '+require_strong_password' => { is_boolean => 1 }, + '+can_be_guarantee' => { is_boolean => 1 }, + '+can_place_ill_in_opac' => { is_boolean => 1 }, + '+exclude_from_local_holds_priority' => { is_boolean => 1 }, + '+require_strong_password' => { is_boolean => 1 }, + '+force_password_reset_when_set_by_staff' => { is_boolean => 1 }, ); 1; -- 2.39.5