Bug 23797: DBIC schema changes
authorJonathan Druart <jonathan.druart@bugs.koha-community.org>
Thu, 23 Jul 2020 08:51:32 +0000 (10:51 +0200)
committerJonathan Druart <jonathan.druart@bugs.koha-community.org>
Thu, 23 Jul 2020 09:33:34 +0000 (11:33 +0200)
Signed-off-by: Jonathan Druart <jonathan.druart@bugs.koha-community.org>

Koha/Schema/Result/OpacNews.pm

index c3906da..ee4bc3b 100644 (file)
@@ -54,7 +54,7 @@ __PACKAGE__->table("opac_news");
   data_type: 'varchar'
   default_value: (empty string)
   is_nullable: 0
-  size: 25
+  size: 50
 
 =head2 timestamp
 
@@ -97,7 +97,7 @@ __PACKAGE__->add_columns(
   "content",
   { data_type => "mediumtext", is_nullable => 0 },
   "lang",
-  { data_type => "varchar", default_value => "", is_nullable => 0, size => 25 },
+  { data_type => "varchar", default_value => "", is_nullable => 0, size => 50 },
   "timestamp",
   {
     data_type => "timestamp",
@@ -168,8 +168,8 @@ __PACKAGE__->belongs_to(
 );
 
 
-# Created by DBIx::Class::Schema::Loader v0.07042 @ 2018-02-16 17:54:54
-# DO NOT MODIFY THIS OR ANYTHING ABOVE! md5sum:gApTRM/dF6uZSMYyvkt4OQ
+# Created by DBIx::Class::Schema::Loader v0.07049 @ 2020-07-23 08:50:46
+# DO NOT MODIFY THIS OR ANYTHING ABOVE! md5sum:Db/JtTOlAdb+83PKZhbFCQ
 
 sub koha_object_class {
     'Koha::NewsItem';