From 2d85a93d37c17a5698e41b5a81e69c3ef017e787 Mon Sep 17 00:00:00 2001 From: Jonathan Druart Date: Fri, 3 Apr 2020 14:39:45 +0200 Subject: [PATCH] Bug 4461: dbic schema update Signed-off-by: Jonathan Druart --- Koha/Schema/Result/ProblemReport.pm | 13 ++++++------- 1 file changed, 6 insertions(+), 7 deletions(-) diff --git a/Koha/Schema/Result/ProblemReport.pm b/Koha/Schema/Result/ProblemReport.pm index f2655b5a7d..5df3c7a065 100644 --- a/Koha/Schema/Result/ProblemReport.pm +++ b/Koha/Schema/Result/ProblemReport.pm @@ -66,9 +66,8 @@ __PACKAGE__->table("problem_reports"); =head2 problempage - data_type: 'varchar' + data_type: 'text' is_nullable: 1 - size: 255 =head2 recipient @@ -87,7 +86,7 @@ __PACKAGE__->table("problem_reports"); =head2 status data_type: 'varchar' - default_value: 'NEW' + default_value: 'New' is_nullable: 0 size: 6 @@ -118,7 +117,7 @@ __PACKAGE__->add_columns( "username", { data_type => "varchar", is_nullable => 1, size => 75 }, "problempage", - { data_type => "varchar", is_nullable => 1, size => 255 }, + { data_type => "text", is_nullable => 1 }, "recipient", { data_type => "enum", @@ -134,7 +133,7 @@ __PACKAGE__->add_columns( is_nullable => 0, }, "status", - { data_type => "varchar", default_value => "NEW", is_nullable => 0, size => 6 }, + { data_type => "varchar", default_value => "New", is_nullable => 0, size => 6 }, ); =head1 PRIMARY KEY @@ -182,8 +181,8 @@ __PACKAGE__->belongs_to( ); -# Created by DBIx::Class::Schema::Loader v0.07042 @ 2020-03-18 22:36:43 -# DO NOT MODIFY THIS OR ANYTHING ABOVE! md5sum:XQn+sJwh4s+EK9vf2gQ7Qw +# Created by DBIx::Class::Schema::Loader v0.07046 @ 2020-04-03 12:13:26 +# DO NOT MODIFY THIS OR ANYTHING ABOVE! md5sum:ho9ENAxH51/ZlZO9KD4KOQ # You can replace this text with custom code or comments, and it will be preserved on regeneration -- 2.20.1