From e5f1dcacfba5503b29969cfaaa564a6cbc9d513b 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 --- 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.20.1