From 71aa651b5ce696d0a5b37048866d8feaa1119540 Mon Sep 17 00:00:00 2001 From: Jonathan Druart Date: Fri, 5 Nov 2021 12:12:52 +0100 Subject: [PATCH] Bug 29386: DBIC schema changes Signed-off-by: Jonathan Druart --- 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..3d0b342d46 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.07049 @ 2021-11-05 11:12:33 +# DO NOT MODIFY THIS OR ANYTHING ABOVE! md5sum:JciFnOzpDW3lZlCfEVJUnQ # You can replace this text with custom code or comments, and it will be preserved on regeneration -- 2.39.5