From 07c7e52adb972095d5206f91ef8ff6449f5e1e17 Mon Sep 17 00:00:00 2001 From: Aleisha Amohia Date: Wed, 21 Feb 2024 22:36:32 +0000 Subject: [PATCH] Bug 35067: Schema updates --- 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 debbdf3aa75..a5e414e440f 100644 --- a/Koha/Schema/Result/AuthorisedValueCategory.pm +++ b/Koha/Schema/Result/AuthorisedValueCategory.pm @@ -36,6 +36,12 @@ __PACKAGE__->table("authorised_value_categories"); default_value: 0 is_nullable: 1 +=head2 parent + + data_type: 'varchar' + is_nullable: 1 + size: 32 + =cut __PACKAGE__->add_columns( @@ -43,6 +49,8 @@ __PACKAGE__->add_columns( { data_type => "varchar", default_value => "", is_nullable => 0, size => 32 }, "is_system", { data_type => "tinyint", default_value => 0, is_nullable => 1 }, + "parent", + { data_type => "varchar", is_nullable => 1, size => 32 }, ); =head1 PRIMARY KEY @@ -105,8 +113,8 @@ __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 +# Created by DBIx::Class::Schema::Loader v0.07049 @ 2024-02-21 22:36:15 +# DO NOT MODIFY THIS OR ANYTHING ABOVE! md5sum:L8WQJrR2WDDHewbcbvLGNg __PACKAGE__->add_columns( '+is_system' => { is_boolean => 1 }, -- 2.30.2