From d934c2add1f675f9988679d0228473b1e069fdef Mon Sep 17 00:00:00 2001 From: Tomas Cohen Arazi Date: Thu, 30 Jun 2022 11:54:10 -0300 Subject: [PATCH] [DO NOT PUSH] Bug 30889: Schema update Signed-off-by: Tomas Cohen Arazi --- 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..da06240971 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-06-30 14:53:39 +# DO NOT MODIFY THIS OR ANYTHING ABOVE! md5sum:t95CnrIOd1CBL5qaEez7dQ # You can replace this text with custom code or comments, and it will be preserved on regeneration -- 2.34.1