From 94eafcb3c15acf3edd92d33c44484f6f9acb8225 Mon Sep 17 00:00:00 2001 From: Julian Maurice Date: Wed, 5 Apr 2023 09:39:08 +0200 Subject: [PATCH] Bug 22972: Update DBIC schema --- Koha/Schema/Result/AuthType.pm | 15 +++++++++++++-- 1 file changed, 13 insertions(+), 2 deletions(-) diff --git a/Koha/Schema/Result/AuthType.pm b/Koha/Schema/Result/AuthType.pm index ce57ceb5ee..8796af8c3f 100644 --- a/Koha/Schema/Result/AuthType.pm +++ b/Koha/Schema/Result/AuthType.pm @@ -49,6 +49,15 @@ __PACKAGE__->table("auth_types"); data_type: 'longtext' is_nullable: 0 +=head2 subfield_to_report_in_1 + + data_type: 'varchar' + default_value: (empty string) + is_nullable: 0 + size: 5 + +Authority subfield to report in biblio $1 + =cut __PACKAGE__->add_columns( @@ -60,6 +69,8 @@ __PACKAGE__->add_columns( { data_type => "varchar", default_value => "", is_nullable => 0, size => 3 }, "summary", { data_type => "longtext", is_nullable => 0 }, + "subfield_to_report_in_1", + { data_type => "varchar", default_value => "", is_nullable => 0, size => 5 }, ); =head1 PRIMARY KEY @@ -107,8 +118,8 @@ __PACKAGE__->has_many( ); -# Created by DBIx::Class::Schema::Loader v0.07042 @ 2018-02-16 17:54:53 -# DO NOT MODIFY THIS OR ANYTHING ABOVE! md5sum:USULz4Y8i0JC73GxcxJ+BA +# Created by DBIx::Class::Schema::Loader v0.07049 @ 2023-04-05 09:38:32 +# DO NOT MODIFY THIS OR ANYTHING ABOVE! md5sum:ObEH05kI+ozceFnaYBehyw sub koha_object_class { 'Koha::Authority::Type'; -- 2.30.2