From 12715fae47900ab72dba6dbe1c5b453cef998452 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 | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/Koha/Schema/Result/AdditionalFieldValue.pm b/Koha/Schema/Result/AdditionalFieldValue.pm index 67af5dedd0a..680e2da3e5e 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 }, ); @@ -99,8 +99,8 @@ __PACKAGE__->belongs_to( ); -# Created by DBIx::Class::Schema::Loader v0.07051 @ 2024-12-10 14:31:11 -# DO NOT MODIFY THIS OR ANYTHING ABOVE! md5sum:f/qqdCg8B+p8vgyF791lkQ +# Created by DBIx::Class::Schema::Loader v0.07051 @ 2025-02-20 12:01:26 +# DO NOT MODIFY THIS OR ANYTHING ABOVE! md5sum:E284Z/ziQarAMj8eorMcWQ # You can replace this text with custom code or comments, and it will be preserved on regeneration -- 2.48.1