From cb6afe8bc96f511743e83316aee84c90d44a581d Mon Sep 17 00:00:00 2001
From: Sam Lau <samalau@gmail.com>
Date: Fri, 21 Jun 2024 17:51:56 +0000
Subject: [PATCH] Bug 33462: Manual Schema Changes (define as boolean)

---
 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 7701674f24..28e6b1072c 100644
--- a/Koha/Schema/Result/Category.pm
+++ b/Koha/Schema/Result/Category.pm
@@ -408,10 +408,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.2