From 770b9a07570594b1643d03a3c2242a0848d3cbd5 Mon Sep 17 00:00:00 2001 From: Lucas Gass Date: Fri, 29 Jul 2022 17:08:00 +0000 Subject: [PATCH] Bug 30889: Update Scheme(DBIC) Signed-off-by: Lucas Gass --- Koha/Schema/Result/BackgroundJob.pm | 13 +++++++++++-- 1 file changed, 11 insertions(+), 2 deletions(-) diff --git a/Koha/Schema/Result/BackgroundJob.pm b/Koha/Schema/Result/BackgroundJob.pm index 97f5fdef01..de26cca801 100644 --- a/Koha/Schema/Result/BackgroundJob.pm +++ b/Koha/Schema/Result/BackgroundJob.pm @@ -70,6 +70,13 @@ Name of the queue the job is sent to data_type: 'longtext' is_nullable: 1 +=head2 context + + data_type: 'longtext' + is_nullable: 1 + +JSON-serialized context information for the job + =head2 enqueued_on data_type: 'datetime' @@ -112,6 +119,8 @@ __PACKAGE__->add_columns( }, "data", { data_type => "longtext", is_nullable => 1 }, + "context", + { data_type => "longtext", is_nullable => 1 }, "enqueued_on", { data_type => "datetime", @@ -145,8 +154,8 @@ __PACKAGE__->add_columns( __PACKAGE__->set_primary_key("id"); -# Created by DBIx::Class::Schema::Loader v0.07049 @ 2022-04-04 17:50:05 -# DO NOT MODIFY THIS OR ANYTHING ABOVE! md5sum:EQUgOEtr2ymejd/0ZffJWg +# Created by DBIx::Class::Schema::Loader v0.07049 @ 2022-07-29 17:07:20 +# DO NOT MODIFY THIS OR ANYTHING ABOVE! md5sum:Zl+TGVbM5aSrvghf7gHRHQ # You can replace this text with custom code or comments, and it will be preserved on regeneration -- 2.39.5