From 14c869516e8095a21179099eb1f74e101fe39679 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 d5d4b9e31d5..2759dece042 100644 --- a/Koha/Schema/Result/BorrowerAttributeType.pm +++ b/Koha/Schema/Result/BorrowerAttributeType.pm @@ -266,6 +266,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.39.5