From e42c0d80bdde11bd804e41a2da20ee6f000e28b3 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 (cherry picked from commit a10d45ea18e94c532614b5480fdd8ab8897a2f60) Signed-off-by: Fridolin Somers --- 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 5df3c7a065..58bd462006 100644 --- a/Koha/Schema/Result/ProblemReport.pm +++ b/Koha/Schema/Result/ProblemReport.pm @@ -38,10 +38,8 @@ __PACKAGE__->table("problem_reports"); =head2 content - data_type: 'varchar' - default_value: (empty string) + data_type: 'text' is_nullable: 0 - size: 255 =head2 borrowernumber @@ -98,7 +96,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", @@ -181,8 +179,8 @@ __PACKAGE__->belongs_to( ); -# Created by DBIx::Class::Schema::Loader v0.07046 @ 2020-04-03 12:13:26 -# DO NOT MODIFY THIS OR ANYTHING ABOVE! md5sum:ho9ENAxH51/ZlZO9KD4KOQ +# Created by DBIx::Class::Schema::Loader v0.07048 @ 2021-04-19 14:35:37 +# DO NOT MODIFY THIS OR ANYTHING ABOVE! md5sum:PyEYjEW9RcJroDcDiVsxpw # You can replace this text with custom code or comments, and it will be preserved on regeneration -- 2.20.1