From 8f799d351775f935caa794cc17d6ba73d86c25e5 Mon Sep 17 00:00:00 2001 From: Kyle Hall Date: Fri, 11 Mar 2022 06:35:03 -0500 Subject: [PATCH] Bug 30128: DBIC Schema update Signed-off-by: Kyle M Hall --- 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 4597ab2b36..045c15921f 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-07 17:33:52 -# DO NOT MODIFY THIS OR ANYTHING ABOVE! md5sum:oaYDhSazc2SC0M4gGH9QQw +# Created by DBIx::Class::Schema::Loader v0.07049 @ 2022-03-11 11:27:12 +# DO NOT MODIFY THIS OR ANYTHING ABOVE! md5sum:ait7RPGBpOffX3f2O3VIaA # You can replace this text with custom content, and it will be preserved on regeneration -- 2.39.5