From 0866cbbd7e4552a50993018b0b5413b84e6e108e Mon Sep 17 00:00:00 2001 From: Martin Renvoize Date: Mon, 1 Nov 2021 08:21:09 +0000 Subject: [PATCH] Bug 27360: (follow-up) Mark public as boolean --- Koha/Schema/Result/Branch.pm | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/Koha/Schema/Result/Branch.pm b/Koha/Schema/Result/Branch.pm index 3021935efc..a0dec7e260 100644 --- a/Koha/Schema/Result/Branch.pm +++ b/Koha/Schema/Result/Branch.pm @@ -901,7 +901,8 @@ __PACKAGE__->has_many( # DO NOT MODIFY THIS OR ANYTHING ABOVE! md5sum:SVuazNjL6+ziK2Uwcc7OwA __PACKAGE__->add_columns( - '+pickup_location' => { is_boolean => 1 } + '+pickup_location' => { is_boolean => 1 }, + '+public' => { is_boolean => 1 } ); sub koha_object_class { -- 2.20.1