From 7882510940487324e4544a4efc9915191a9e2dbe Mon Sep 17 00:00:00 2001 From: Nick Clemens Date: Wed, 21 Sep 2022 20:26:24 +0000 Subject: [PATCH] Bug 29071: Add HoldsQueueSplitNumbering syspref for any libraries that may not have it --- installer/data/mysql/atomicupdate/bug_29071.pl | 17 +++++++++++++++++ 1 file changed, 17 insertions(+) create mode 100755 installer/data/mysql/atomicupdate/bug_29071.pl diff --git a/installer/data/mysql/atomicupdate/bug_29071.pl b/installer/data/mysql/atomicupdate/bug_29071.pl new file mode 100755 index 0000000000..6ce1adc53c --- /dev/null +++ b/installer/data/mysql/atomicupdate/bug_29071.pl @@ -0,0 +1,17 @@ +use Modern::Perl; + +return { + bug_number => "29071", + description => "Set HoldsQueueSplitNumbering where not set", + up => sub { + my ($args) = @_; + my ($dbh, $out) = @$args{qw(dbh out)}; + # Do you stuffs here + $dbh->do(q{ + INSERT IGNORE INTO systempreferences ( `variable`, `value`, `options`, `explanation`, `type` ) VALUES + ('HoldsSplitQueueNumbering', 'actual', 'actual|virtual', 'If the holds queue is split, decide if the acual priorities should be displayed', 'Choice') + }); + # Print useful stuff here + say $out "Added HoldsSplitQueueNumbering if not already there"; + }, +}; -- 2.30.2