From 7532ebfb9f6e75ede588835175250b1a8031738f Mon Sep 17 00:00:00 2001 From: Martin Renvoize Date: Thu, 20 Feb 2025 12:01:49 +0000 Subject: [PATCH] Bug 38457: DBIC Schema --- Koha/Schema/Result/AdditionalFieldValue.pm | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Koha/Schema/Result/AdditionalFieldValue.pm b/Koha/Schema/Result/AdditionalFieldValue.pm index edaa851427d..44b0b66f934 100644 --- a/Koha/Schema/Result/AdditionalFieldValue.pm +++ b/Koha/Schema/Result/AdditionalFieldValue.pm @@ -43,7 +43,7 @@ foreign key references additional_fields(id) data_type: 'varchar' is_nullable: 0 - size: 11 + size: 80 record_id @@ -64,7 +64,7 @@ __PACKAGE__->add_columns( "field_id", { data_type => "integer", is_foreign_key => 1, is_nullable => 0 }, "record_id", - { data_type => "varchar", is_nullable => 0, size => 11 }, + { data_type => "varchar", is_nullable => 0, size => 80 }, "value", { data_type => "varchar", default_value => "", is_nullable => 0, size => 255 }, ); -- 2.49.0