From fe625aacf250186f74c0b48d313346082755a015 Mon Sep 17 00:00:00 2001 From: Sam Lau Date: Thu, 6 Jun 2024 19:04:39 +0000 Subject: [PATCH] Bug 33462: Manual Schema Changes --- 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 9bf08a3458..ba58eb7598 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