From 4811224619883acdf45de674b55538657c26df75 Mon Sep 17 00:00:00 2001 From: Shi Yao Wang Date: Wed, 1 Jun 2022 09:17:01 -0400 Subject: [PATCH] Bug 12446: DBIC specific add_columns canbeguarantee New column canbeguarantee --- Koha/Schema/Result/Category.pm | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/Koha/Schema/Result/Category.pm b/Koha/Schema/Result/Category.pm index 3bcf1235e4..c1c3e45a32 100644 --- a/Koha/Schema/Result/Category.pm +++ b/Koha/Schema/Result/Category.pm @@ -368,6 +368,10 @@ __PACKAGE__->add_columns( '+exclude_from_local_holds_priority' => { is_boolean => 1 }, ); +__PACKAGE__->add_columns( + '+canbeguarantee' => { is_boolean => 1 } +); + sub koha_object_class { 'Koha::Patron::Category'; } -- 2.25.1