From a8adfddf2cc08889f3a29e11c81d02e16448536f Mon Sep 17 00:00:00 2001 From: Tomas Cohen Arazi Date: Tue, 11 May 2021 08:30:59 -0300 Subject: [PATCH] Bug 28272: issues.notseen needs to be marked as a boolean Signed-off-by: Tomas Cohen Arazi Signed-off-by: Jonathan Druart --- Koha/Schema/Result/Issue.pm | 1 + 1 file changed, 1 insertion(+) diff --git a/Koha/Schema/Result/Issue.pm b/Koha/Schema/Result/Issue.pm index 541f4c3501..7b4091eead 100644 --- a/Koha/Schema/Result/Issue.pm +++ b/Koha/Schema/Result/Issue.pm @@ -341,6 +341,7 @@ __PACKAGE__->might_have( __PACKAGE__->add_columns( '+auto_renew' => { is_boolean => 1 }, + '+noteseen' => { is_boolean => 1 }, '+onsite_checkout' => { is_boolean => 1 } ); -- 2.39.5