Bugzilla – Attachment 132644 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: Add missing atomicupdate file
Bug-27783-Add-missing-atomicupdate-file.patch (text/plain), 1.23 KB, created by
Julian Maurice
on 2022-03-30 14:43:29 UTC
(
hide
)
Description:
Bug 27783: Add missing atomicupdate file
Filename:
MIME Type:
Creator:
Julian Maurice
Created:
2022-03-30 14:43:29 UTC
Size:
1.23 KB
patch
obsolete
>From 8bfb5cc9b0233d63666b8735043e22ee43a9415f Mon Sep 17 00:00:00 2001 >From: Julian Maurice <julian.maurice@biblibre.com> >Date: Wed, 30 Mar 2022 16:42:55 +0200 >Subject: [PATCH] Bug 27783: Add missing atomicupdate file > >--- > .../data/mysql/atomicupdate/bug-27783.pl | 21 +++++++++++++++++++ > 1 file changed, 21 insertions(+) > create mode 100644 installer/data/mysql/atomicupdate/bug-27783.pl > >diff --git a/installer/data/mysql/atomicupdate/bug-27783.pl b/installer/data/mysql/atomicupdate/bug-27783.pl >new file mode 100644 >index 0000000000..7fee204990 >--- /dev/null >+++ b/installer/data/mysql/atomicupdate/bug-27783.pl >@@ -0,0 +1,21 @@ >+use Modern::Perl; >+ >+return { >+ bug_number => '27783', >+ description => 'Add background_jobs.queue', >+ up => sub { >+ my ($args) = @_; >+ my ($dbh, $out) = @$args{qw(dbh out)}; >+ >+ $dbh->do(q{ >+ ALTER TABLE `background_jobs` >+ ADD `queue` VARCHAR(191) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT 'default' COMMENT 'Name of the queue the job is sent to' AFTER `type` >+ }); >+ $dbh->do(q{ >+ ALTER TABLE `background_jobs` >+ ADD KEY `queue` (`queue`) >+ }); >+ >+ say $out "Added background_jobs.queue"; >+ }, >+}; >-- >2.30.2
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