From 98a87a08c604ef302e1128d14450d172fbbdcf45 Mon Sep 17 00:00:00 2001 From: Jonathan Druart Date: Thu, 16 Jan 2025 10:42:00 +0100 Subject: [PATCH] Bug 35635: Flag opac_mandatory as boolean Signed-off-by: Jonathan Druart --- Koha/Schema/Result/BorrowerAttributeType.pm | 1 + 1 file changed, 1 insertion(+) diff --git a/Koha/Schema/Result/BorrowerAttributeType.pm b/Koha/Schema/Result/BorrowerAttributeType.pm index 0d8603cf53e..f5484840cc6 100644 --- a/Koha/Schema/Result/BorrowerAttributeType.pm +++ b/Koha/Schema/Result/BorrowerAttributeType.pm @@ -276,6 +276,7 @@ __PACKAGE__->has_many( __PACKAGE__->add_columns( '+keep_for_pseudonymization' => { is_boolean => 1 }, '+mandatory' => { is_boolean => 1 }, + '+opac_mandatory' => { is_boolean => 1 }, '+searched_by_default' => { is_boolean => 1 }, '+staff_searchable' => { is_boolean => 1 }, ); -- 2.34.1