From 0bc9113ff836fbe72db40524a5cc045713c9d95d Mon Sep 17 00:00:00 2001 From: Aleisha Amohia Date: Thu, 22 Feb 2024 22:25:36 +0000 Subject: [PATCH] Bug 36153: Schema updates --- Koha/Schema/Result/AuthorisedValue.pm | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/Koha/Schema/Result/AuthorisedValue.pm b/Koha/Schema/Result/AuthorisedValue.pm index 874c166b02a..adca6179137 100644 --- a/Koha/Schema/Result/AuthorisedValue.pm +++ b/Koha/Schema/Result/AuthorisedValue.pm @@ -54,7 +54,7 @@ code use to identify the authorized value data_type: 'varchar' is_nullable: 1 - size: 200 + size: 400 authorized value description as printed in the staff interface @@ -62,7 +62,7 @@ authorized value description as printed in the staff interface data_type: 'varchar' is_nullable: 1 - size: 200 + size: 400 authorized value description as printed in the OPAC @@ -90,9 +90,9 @@ __PACKAGE__->add_columns( "authorised_value", { data_type => "varchar", default_value => "", is_nullable => 0, size => 80 }, "lib", - { data_type => "varchar", is_nullable => 1, size => 200 }, + { data_type => "varchar", is_nullable => 1, size => 400 }, "lib_opac", - { data_type => "varchar", is_nullable => 1, size => 200 }, + { data_type => "varchar", is_nullable => 1, size => 400 }, "imageurl", { data_type => "varchar", is_nullable => 1, size => 200 }, ); @@ -173,8 +173,8 @@ __PACKAGE__->has_many( ); -# Created by DBIx::Class::Schema::Loader v0.07049 @ 2021-01-21 13:39:29 -# DO NOT MODIFY THIS OR ANYTHING ABOVE! md5sum:LH9dpEEzlVVsjNVv/jnONg +# Created by DBIx::Class::Schema::Loader v0.07049 @ 2024-02-22 22:25:23 +# DO NOT MODIFY THIS OR ANYTHING ABOVE! md5sum:1PdeJvOnrB/+QfoP6mZ/hA # You can replace this text with custom code or comments, and it will be preserved on regeneration -- 2.30.2