From 119afda9438ff9aee4895b00fa4c2d6457ea9a86 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 a83ebd68a2..1058bc2ac6 100644 --- a/Koha/Schema/Result/Category.pm +++ b/Koha/Schema/Result/Category.pm @@ -374,6 +374,10 @@ __PACKAGE__->has_many( # Created by DBIx::Class::Schema::Loader v0.07049 @ 2022-06-23 16:29:27 # DO NOT MODIFY THIS OR ANYTHING ABOVE! md5sum:SKWF2QpqQtXoujwurKFQhA +__PACKAGE__->add_columns( + '+canbeguarantee' => { is_boolean => 1 } +); + sub koha_object_class { 'Koha::Patron::Category'; } -- 2.34.1