From 7854c40e494db8b89fcbfa3d4631c25466eb97ca 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 --- 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 541f4c35019..7b4091eead9 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.31.1