From 28d06e135dc4e93c0521fa7e087446e1c33e7a04 Mon Sep 17 00:00:00 2001 From: Kyle Hall Date: Thu, 11 Nov 2021 07:24:54 -0500 Subject: [PATCH] DBIC schema changes Signed-off-by: Kyle M Hall --- 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..927ab27c36 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-11 12:24:23 +# DO NOT MODIFY THIS OR ANYTHING ABOVE! md5sum:TrU5mNPYzIW1mcL6pUyGQQ # You can replace this text with custom code or comments, and it will be preserved on regeneration -- 2.39.5