From a10d45ea18e94c532614b5480fdd8ab8897a2f60 Mon Sep 17 00:00:00 2001 From: Jonathan Druart Date: Mon, 12 Apr 2021 15:27:36 +0200 Subject: [PATCH] Bug 27726: DBIC schema changes Signed-off-by: Jonathan Druart --- Koha/Schema/Result/ProblemReport.pm | 10 ++++------ 1 file changed, 4 insertions(+), 6 deletions(-) diff --git a/Koha/Schema/Result/ProblemReport.pm b/Koha/Schema/Result/ProblemReport.pm index 11fed23b42..9987a3343f 100644 --- a/Koha/Schema/Result/ProblemReport.pm +++ b/Koha/Schema/Result/ProblemReport.pm @@ -42,10 +42,8 @@ report subject line =head2 content - data_type: 'varchar' - default_value: (empty string) + data_type: 'text' is_nullable: 0 - size: 255 report message content @@ -118,7 +116,7 @@ __PACKAGE__->add_columns( "title", { data_type => "varchar", default_value => "", is_nullable => 0, size => 40 }, "content", - { data_type => "varchar", default_value => "", is_nullable => 0, size => 255 }, + { data_type => "text", is_nullable => 0 }, "borrowernumber", { data_type => "integer", @@ -201,8 +199,8 @@ __PACKAGE__->belongs_to( ); -# Created by DBIx::Class::Schema::Loader v0.07049 @ 2021-01-21 13:39:29 -# DO NOT MODIFY THIS OR ANYTHING ABOVE! md5sum:ETzDxg5r4N476ZWkK2wviQ +# Created by DBIx::Class::Schema::Loader v0.07046 @ 2021-04-12 13:27:06 +# DO NOT MODIFY THIS OR ANYTHING ABOVE! md5sum:YdCX1Hak6UwiJo1iBJqqzg # You can replace this text with custom code or comments, and it will be preserved on regeneration -- 2.11.0