From 98697383fcf06663a570b2a98dcd3325c9ea31b3 Mon Sep 17 00:00:00 2001 From: Fridolin Somers Date: Thu, 17 Feb 2022 20:40:31 -1000 Subject: [PATCH] Bug 30128: [DO NOT PUSH] Update DBIC Schema Signed-off-by: Katrin Fischer Signed-off-by: Martin Renvoize --- Koha/Schema/Result/LanguageSubtagRegistry.pm | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/Koha/Schema/Result/LanguageSubtagRegistry.pm b/Koha/Schema/Result/LanguageSubtagRegistry.pm index d50ee1c924..e49d89745b 100644 --- a/Koha/Schema/Result/LanguageSubtagRegistry.pm +++ b/Koha/Schema/Result/LanguageSubtagRegistry.pm @@ -41,7 +41,7 @@ language-script-region-variant-extension-privateuse data_type: 'varchar' is_nullable: 1 - size: 25 + size: 255 only one of the possible descriptions for ease of reference, see language_descriptions for the complete list @@ -65,7 +65,7 @@ __PACKAGE__->add_columns( "type", { data_type => "varchar", is_nullable => 1, size => 25 }, "description", - { data_type => "varchar", is_nullable => 1, size => 25 }, + { data_type => "varchar", is_nullable => 1, size => 255 }, "added", { data_type => "date", datetime_undef_if_invalid => 1, is_nullable => 1 }, "id", @@ -101,8 +101,8 @@ __PACKAGE__->set_primary_key("id"); __PACKAGE__->add_unique_constraint("uniq_lang", ["subtag", "type"]); -# Created by DBIx::Class::Schema::Loader v0.07049 @ 2022-02-02 07:13:00 -# DO NOT MODIFY THIS OR ANYTHING ABOVE! md5sum:8VCaLbL67TbZrsPI3OSwkg +# Created by DBIx::Class::Schema::Loader v0.07049 @ 2022-02-18 06:39:54 +# DO NOT MODIFY THIS OR ANYTHING ABOVE! md5sum:Y+8JJ0gnp2ct3fKbM1oq6Q # You can replace this text with custom content, and it will be preserved on regeneration -- 2.20.1