@@ -, +, @@ --- Koha/Schema/Result/BackgroundJob.pm | 11 +++++++++-- 1 file changed, 9 insertions(+), 2 deletions(-) --- a/Koha/Schema/Result/BackgroundJob.pm +++ a/Koha/Schema/Result/BackgroundJob.pm @@ -70,6 +70,11 @@ Name of the queue the job is sent to data_type: 'longtext' is_nullable: 1 +=head2 context + + data_type: 'longtext' + is_nullable: 1 + =head2 enqueued_on data_type: 'datetime' @@ -112,6 +117,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 +152,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-10 13:21:28 +# DO NOT MODIFY THIS OR ANYTHING ABOVE! md5sum:P1FXv3Jy6MST5qMrM5uJKw # You can replace this text with custom code or comments, and it will be preserved on regeneration --