From 5dea2a7e78936725cb70ae35c80690b0b5357d73 Mon Sep 17 00:00:00 2001 From: Tomas Cohen Arazi Date: Mon, 4 Apr 2022 19:50:57 +0200 Subject: [PATCH] Bug 27783: DBIC update [DO NOT PUSH] Signed-off-by: Tomas Cohen Arazi --- Koha/Schema/Result/BackgroundJob.pm | 20 ++++++++++++++++++-- 1 file changed, 18 insertions(+), 2 deletions(-) diff --git a/Koha/Schema/Result/BackgroundJob.pm b/Koha/Schema/Result/BackgroundJob.pm index 3d0b342d46..97f5fdef01 100644 --- a/Koha/Schema/Result/BackgroundJob.pm +++ b/Koha/Schema/Result/BackgroundJob.pm @@ -56,6 +56,15 @@ __PACKAGE__->table("background_jobs"); is_nullable: 1 size: 64 +=head2 queue + + data_type: 'varchar' + default_value: 'default' + is_nullable: 0 + size: 191 + +Name of the queue the job is sent to + =head2 data data_type: 'longtext' @@ -94,6 +103,13 @@ __PACKAGE__->add_columns( { data_type => "integer", is_nullable => 1 }, "type", { data_type => "varchar", is_nullable => 1, size => 64 }, + "queue", + { + data_type => "varchar", + default_value => "default", + is_nullable => 0, + size => 191, + }, "data", { data_type => "longtext", is_nullable => 1 }, "enqueued_on", @@ -129,8 +145,8 @@ __PACKAGE__->add_columns( __PACKAGE__->set_primary_key("id"); -# Created by DBIx::Class::Schema::Loader v0.07049 @ 2021-11-05 11:12:33 -# DO NOT MODIFY THIS OR ANYTHING ABOVE! md5sum:JciFnOzpDW3lZlCfEVJUnQ +# Created by DBIx::Class::Schema::Loader v0.07049 @ 2022-04-04 17:50:05 +# DO NOT MODIFY THIS OR ANYTHING ABOVE! md5sum:EQUgOEtr2ymejd/0ZffJWg # You can replace this text with custom code or comments, and it will be preserved on regeneration -- 2.35.1