Bugzilla – Attachment 128588 Details for
Bug 27208
Add a configurable time delay feature to hold notice templates
Home
|
New
|
Browse
|
Search
|
[?]
|
Reports
|
Help
|
New Account
|
Log In
[x]
|
Forgot Password
Login:
[x]
[patch]
Bug 27208: Atomicupdate
Bug-27208-Atomicupdate.patch (text/plain), 1.19 KB, created by
Björn Nylén
on 2021-12-16 10:18:03 UTC
(
hide
)
Description:
Bug 27208: Atomicupdate
Filename:
MIME Type:
Creator:
Björn Nylén
Created:
2021-12-16 10:18:03 UTC
Size:
1.19 KB
patch
obsolete
>From 051aaa57766bebc5706057de76ca3f754f04bc29 Mon Sep 17 00:00:00 2001 >From: =?UTF-8?q?Bj=C3=B6rn=20Nyl=C3=A9n?= <bjorn.nylen@ub.lu.se> >Date: Tue, 14 Dec 2021 08:34:48 +0000 >Subject: [PATCH] Bug 27208: Atomicupdate > >--- > .../bug_27208-add_delay_util_to_message_queue.pl | 16 ++++++++++++++++ > 1 file changed, 16 insertions(+) > create mode 100755 installer/data/mysql/atomicupdate/bug_27208-add_delay_util_to_message_queue.pl > >diff --git a/installer/data/mysql/atomicupdate/bug_27208-add_delay_util_to_message_queue.pl b/installer/data/mysql/atomicupdate/bug_27208-add_delay_util_to_message_queue.pl >new file mode 100755 >index 0000000000..e2235100e0 >--- /dev/null >+++ b/installer/data/mysql/atomicupdate/bug_27208-add_delay_util_to_message_queue.pl >@@ -0,0 +1,16 @@ >+use Modern::Perl; >+ >+return { >+ bug_number => "27208", >+ description => "Adding new column 'message_queue.delay_until'", >+ up => sub { >+ my ($args) = @_; >+ my $dbh = $args->{dbh}; >+ >+ if( !column_exists( 'message_queue', 'delay_until' ) ) { >+ $dbh->do(q{ >+ ALTER TABLE message_queue ADD COLUMN `delay_until` TIMESTAMP NULL DEFAULT NULL AFTER `failure_code` >+ }); >+ } >+ }, >+} >-- >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 27208
:
128387
|
128388
|
128389
|
128390
|
128587
|
128588
|
128589
|
128590
|
128948
|
128949
|
128950
|
128951