Bugzilla – Attachment 133176 Details for
Bug 27783
Introduce background job queues
Home
|
New
|
Browse
|
Search
|
[?]
|
Reports
|
Help
|
New Account
|
Log In
[x]
|
Forgot Password
Login:
[x]
[patch]
Bug 27783: DBIC update [DO NOT PUSH]
Bug-27783-DBIC-update-DO-NOT-PUSH.patch (text/plain), 1.80 KB, created by
Martin Renvoize (ashimema)
on 2022-04-11 15:13:53 UTC
(
hide
)
Description:
Bug 27783: DBIC update [DO NOT PUSH]
Filename:
MIME Type:
Creator:
Martin Renvoize (ashimema)
Created:
2022-04-11 15:13:53 UTC
Size:
1.80 KB
patch
obsolete
>From d9bd39ce7033bd670ed98f3d06ad8e4cb7bd2a21 Mon Sep 17 00:00:00 2001 >From: Tomas Cohen Arazi <tomascohen@theke.io> >Date: Mon, 4 Apr 2022 19:50:57 +0200 >Subject: [PATCH] Bug 27783: DBIC update [DO NOT PUSH] > >Signed-off-by: Tomas Cohen Arazi <tomascohen@theke.io> >Signed-off-by: Kyle M Hall <kyle@bywatersolutions.com> >Signed-off-by: Martin Renvoize <martin.renvoize@ptfs-europe.com> >--- > 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.20.1
You cannot view the attachment while viewing its details because your browser does not support IFRAMEs.
View the attachment on a separate page
.
View Attachment As Diff
View Attachment As Raw
Actions:
View
|
Diff
|
Splinter Review
Attachments on
bug 27783
:
132642
|
132644
|
132649
|
132650
|
132651
|
132846
|
132847
|
132848
|
132849
|
132850
|
132875
|
132876
|
132877
|
132878
|
132879
|
132880
|
132948
|
132950
|
132951
|
133160
|
133161
|
133162
|
133163
|
133164
|
133165
|
133166
|
133167
|
133168
|
133169
|
133170
|
133171
|
133172
|
133173
|
133174
|
133175
| 133176 |
133177
|
133178
|
133179