From ee39e8a8f9ff398d531deb2d7e87f2a09688328a Mon Sep 17 00:00:00 2001 From: Jonathan Druart Date: Tue, 28 Apr 2020 11:03:25 +0200 Subject: [PATCH] Bug 17355: DBIC changes Signed-off-by: Victor Grousset/tuxayo Signed-off-by: Katrin Fischer --- Koha/Schema/Result/AuthorisedValueCategory.pm | 12 ++++++++++-- 1 file changed, 10 insertions(+), 2 deletions(-) diff --git a/Koha/Schema/Result/AuthorisedValueCategory.pm b/Koha/Schema/Result/AuthorisedValueCategory.pm index fcbb25a832..6a3cb912f0 100644 --- a/Koha/Schema/Result/AuthorisedValueCategory.pm +++ b/Koha/Schema/Result/AuthorisedValueCategory.pm @@ -30,11 +30,19 @@ __PACKAGE__->table("authorised_value_categories"); is_nullable: 0 size: 32 +=head2 is_system + + data_type: 'tinyint' + default_value: 0 + is_nullable: 1 + =cut __PACKAGE__->add_columns( "category_name", { data_type => "varchar", default_value => "", is_nullable => 0, size => 32 }, + "is_system", + { data_type => "tinyint", default_value => 0, is_nullable => 1 }, ); =head1 PRIMARY KEY @@ -97,8 +105,8 @@ __PACKAGE__->has_many( ); -# Created by DBIx::Class::Schema::Loader v0.07045 @ 2016-08-30 11:59:31 -# DO NOT MODIFY THIS OR ANYTHING ABOVE! md5sum:6vToj9pUcIv8Jio38rNE4g +# Created by DBIx::Class::Schema::Loader v0.07046 @ 2020-04-28 09:07:15 +# DO NOT MODIFY THIS OR ANYTHING ABOVE! md5sum:EfBQNJN5wgpFPlWVP4U+qw sub koha_objects_class { 'Koha::AuthorisedValueCategories'; -- 2.11.0