From 1b9219ec4c53bfb4fea08d9afc7a296cb88d46b0 Mon Sep 17 00:00:00 2001 From: Jonathan Druart Date: Tue, 28 Apr 2020 11:05:46 +0200 Subject: [PATCH] Bug 17355: DBIC changes - boolean flag Signed-off-by: Victor Grousset/tuxayo --- Koha/Schema/Result/AuthorisedValueCategory.pm | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/Koha/Schema/Result/AuthorisedValueCategory.pm b/Koha/Schema/Result/AuthorisedValueCategory.pm index 6a3cb912f0..debbdf3aa7 100644 --- a/Koha/Schema/Result/AuthorisedValueCategory.pm +++ b/Koha/Schema/Result/AuthorisedValueCategory.pm @@ -108,6 +108,10 @@ __PACKAGE__->has_many( # Created by DBIx::Class::Schema::Loader v0.07046 @ 2020-04-28 09:07:15 # DO NOT MODIFY THIS OR ANYTHING ABOVE! md5sum:EfBQNJN5wgpFPlWVP4U+qw +__PACKAGE__->add_columns( + '+is_system' => { is_boolean => 1 }, +); + sub koha_objects_class { 'Koha::AuthorisedValueCategories'; } -- 2.26.2