Bug 28872: DBRev 21.05.02.003

Signed-off-by: Kyle M Hall <kyle@bywatersolutions.com>
This commit is contained in:
Kyle Hall 2021-08-20 14:09:13 -04:00
parent ccb09890d1
commit 488ceca3d1
2 changed files with 8 additions and 12 deletions

View file

@ -1,12 +0,0 @@
use Modern::Perl;
return {
bug_number => "28872",
description => "Update syspref values from on and off to 1 and 0",
up => sub {
my ($args) = @_;
my ($dbh, $out) = @$args{qw(dbh out)};
$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'});
},
}

View file

@ -24414,6 +24414,14 @@ if( CheckVersion( $DBversion ) ) {
NewVersion( $DBversion, 28813, "Update delivery_note to failure_code in message_queue");
}
$DBversion = '21.05.02.003';
if( CheckVersion( $DBversion ) ) {
$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'});
NewVersion( $DBversion, 28872, "Update syspref values from on and off to 1 and 0");
}
# SEE bug 13068
# if there is anything in the atomicupdate, read and execute it.
my $update_dir = C4::Context->config('intranetdir') . '/installer/data/mysql/atomicupdate/';