From 75a210aef48776969007bac6d29d510f5657048e Mon Sep 17 00:00:00 2001 From: Jonathan Druart Date: Thu, 4 Mar 2021 16:26:04 +0000 Subject: [PATCH] Bug 22824: DBRev 20.12.00.021 Signed-off-by: Jonathan Druart --- Koha.pm | 2 +- .../data/mysql/atomicupdate/bug_22824.perl | 16 ---------------- installer/data/mysql/updatedatabase.pl | 17 +++++++++++++++++ 3 files changed, 18 insertions(+), 17 deletions(-) delete mode 100644 installer/data/mysql/atomicupdate/bug_22824.perl diff --git a/Koha.pm b/Koha.pm index 15215dcbd6..01f1db319c 100644 --- a/Koha.pm +++ b/Koha.pm @@ -29,7 +29,7 @@ use vars qw{ $VERSION }; # - #4 : the developer version. The 4th number is the database subversion. # used by developers when the database changes. updatedatabase take care of the changes itself # and is automatically called by Auth.pm when needed. -$VERSION = "20.12.00.020"; +$VERSION = "20.12.00.021"; sub version { return $VERSION; diff --git a/installer/data/mysql/atomicupdate/bug_22824.perl b/installer/data/mysql/atomicupdate/bug_22824.perl deleted file mode 100644 index 058204280a..0000000000 --- a/installer/data/mysql/atomicupdate/bug_22824.perl +++ /dev/null @@ -1,16 +0,0 @@ -$DBversion = 'XXX'; # will be replaced by the RM -if( CheckVersion( $DBversion ) ) { - $dbh->do(q{ - UPDATE systempreferences SET type="Free" WHERE variable="OverDriveClientSecret" OR variable="RecordedBooksClientSecret" - }); - $dbh->do(q{ - UPDATE systempreferences SET type="integer" WHERE variable="UsageStats" - }); - $dbh->do(q{ - UPDATE systempreferences - SET value="0" - WHERE ( ( type = "YesNo" AND ( value NOT IN ( "1", "0" ) OR value IS NULL ) ) ) - }); - - NewVersion( $DBversion, 22824, "Update syspref values for YesNo"); -} diff --git a/installer/data/mysql/updatedatabase.pl b/installer/data/mysql/updatedatabase.pl index 9712b60a38..5f4e6e1e13 100755 --- a/installer/data/mysql/updatedatabase.pl +++ b/installer/data/mysql/updatedatabase.pl @@ -23617,6 +23617,23 @@ if ( CheckVersion($DBversion) ) { NewVersion( $DBversion, 24446, "Update stockrotation 'daterequested' field in transfers table" ); } +$DBversion = '20.12.00.021'; +if( CheckVersion( $DBversion ) ) { + $dbh->do(q{ + UPDATE systempreferences SET type="Free" WHERE variable="OverDriveClientSecret" OR variable="RecordedBooksClientSecret" + }); + $dbh->do(q{ + UPDATE systempreferences SET type="integer" WHERE variable="UsageStats" + }); + $dbh->do(q{ + UPDATE systempreferences + SET value="0" + WHERE ( ( type = "YesNo" AND ( value NOT IN ( "1", "0" ) OR value IS NULL ) ) ) + }); + + NewVersion( $DBversion, 22824, "Update syspref values for YesNo"); +} + # 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/'; -- 2.39.5