Bugzilla – Attachment 123957 Details for
Bug 28872
AcquisitionLog, NewsLog, NoticesLog should use 1/0 for their values
Home
|
New
|
Browse
|
Search
|
[?]
|
Reports
|
Help
|
New Account
|
Log In
[x]
|
Forgot Password
Login:
[x]
[patch]
Bug 28872: Atomicupdate to correct existing values
Bug-28872-Atomicupdate-to-correct-existing-values.patch (text/plain), 1.38 KB, created by
Katrin Fischer
on 2021-08-18 12:47:31 UTC
(
hide
)
Description:
Bug 28872: Atomicupdate to correct existing values
Filename:
MIME Type:
Creator:
Katrin Fischer
Created:
2021-08-18 12:47:31 UTC
Size:
1.38 KB
patch
obsolete
>From 879a6dc0b3dca44acd5b60690040c5e38854e87c Mon Sep 17 00:00:00 2001 >From: Andrew Fuerste-Henry <andrew@bywatersolutions.com> >Date: Tue, 17 Aug 2021 23:57:54 +0000 >Subject: [PATCH] Bug 28872: Atomicupdate to correct existing values > >Signed-off-by: Katrin Fischer <katrin.fischer.83@web.de> >--- > .../mysql/atomicupdate/bug_28872_update_log_values.pl | 16 ++++++++++++++++ > 1 file changed, 16 insertions(+) > create mode 100644 installer/data/mysql/atomicupdate/bug_28872_update_log_values.pl > >diff --git a/installer/data/mysql/atomicupdate/bug_28872_update_log_values.pl b/installer/data/mysql/atomicupdate/bug_28872_update_log_values.pl >new file mode 100644 >index 0000000000..4ee8b75e3e >--- /dev/null >+++ b/installer/data/mysql/atomicupdate/bug_28872_update_log_values.pl >@@ -0,0 +1,16 @@ >+use Modern::Perl; >+ >+{ >+ bug_number => "28872", >+ description => "update values from on and off to 1 and 0", >+ up => sub { >+ my ($args) = @_; >+ my ($dbh, $out) = @$args{qw(dbh out)}; >+ # Do you stuffs here >+ $dbh->do(q{update systempreferences set value=1 where variable in ('AcquisitionLog', 'NewsLog', 'NoticesLog') and value='on'}); >+ $dbh->do(q{update systempreferences set value=0 where variable in ('AcquisitionLog', 'NewsLog', 'NoticesLog') and value='off'}); >+ >+ # Print useful stuff here >+ say $out "Update is going well so far"; >+ }, >+} >-- >2.11.0
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 28872
:
123880
|
123911
|
123921
|
123940
|
123941
|
123942
|
123956
| 123957 |
123958