From a4aa24931cb6cbc6b70292668980588b538f319a Mon Sep 17 00:00:00 2001 From: Fridolin Somers Date: Fri, 12 Nov 2021 13:08:19 -1000 Subject: [PATCH] Bug 29386: DBIC schema changes Signed-off-by: Fridolin Somers --- Koha/Schema/Result/BackgroundJob.pm | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/Koha/Schema/Result/BackgroundJob.pm b/Koha/Schema/Result/BackgroundJob.pm index 4c4dc4aa24..4b09b8a573 100644 --- a/Koha/Schema/Result/BackgroundJob.pm +++ b/Koha/Schema/Result/BackgroundJob.pm @@ -58,7 +58,7 @@ __PACKAGE__->table("background_jobs"); =head2 data - data_type: 'text' + data_type: 'longtext' is_nullable: 1 =head2 enqueued_on @@ -95,7 +95,7 @@ __PACKAGE__->add_columns( "type", { data_type => "varchar", is_nullable => 1, size => 64 }, "data", - { data_type => "text", is_nullable => 1 }, + { data_type => "longtext", is_nullable => 1 }, "enqueued_on", { data_type => "datetime", @@ -129,8 +129,8 @@ __PACKAGE__->add_columns( __PACKAGE__->set_primary_key("id"); -# Created by DBIx::Class::Schema::Loader v0.07046 @ 2020-02-20 15:09:04 -# DO NOT MODIFY THIS OR ANYTHING ABOVE! md5sum:W4AN0tDu8476YvcYbHc1DA +# Created by DBIx::Class::Schema::Loader v0.07048 @ 2021-11-13 00:06:55 +# DO NOT MODIFY THIS OR ANYTHING ABOVE! md5sum:yUwBTkBlr/E+uShcChuxfA # You can replace this text with custom code or comments, and it will be preserved on regeneration -- 2.39.5