From ae92e4456423ba615cd44234de6b9fb309aa5025 Mon Sep 17 00:00:00 2001 From: Martin Renvoize Date: Thu, 31 Oct 2019 11:37:33 +0000 Subject: [PATCH] Bug 23866: DBRev 19.06.00.045 Signed-off-by: Martin Renvoize --- Koha.pm | 2 +- installer/data/mysql/atomicupdate/bug_23866.perl | 7 ------- installer/data/mysql/updatedatabase.pl | 8 ++++++++ 3 files changed, 9 insertions(+), 8 deletions(-) delete mode 100644 installer/data/mysql/atomicupdate/bug_23866.perl diff --git a/Koha.pm b/Koha.pm index 263a7f269f..6ec4fca8df 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 = "19.06.00.044"; +$VERSION = "19.06.00.045"; sub version { return $VERSION; diff --git a/installer/data/mysql/atomicupdate/bug_23866.perl b/installer/data/mysql/atomicupdate/bug_23866.perl deleted file mode 100644 index 3c1f19c5c0..0000000000 --- a/installer/data/mysql/atomicupdate/bug_23866.perl +++ /dev/null @@ -1,7 +0,0 @@ -$DBversion = 'XXX'; # will be replaced by the RM -if( CheckVersion( $DBversion ) ) { - $dbh->do( "UPDATE systempreferences SET value = '2' WHERE value = '0' AND variable = 'UsageStats'" ); - - SetVersion( $DBversion ); - print "Upgrade to $DBversion done (Bug 23866 - Set HEA syspref to prompt for review)\n"; -} diff --git a/installer/data/mysql/updatedatabase.pl b/installer/data/mysql/updatedatabase.pl index a0c00b43fb..0a1ec1de00 100755 --- a/installer/data/mysql/updatedatabase.pl +++ b/installer/data/mysql/updatedatabase.pl @@ -20103,6 +20103,14 @@ if ( CheckVersion($DBversion) ) { print "Upgrade to $DBversion done (Bug 23805 - Add account credit_types)\n"; } +$DBversion = '19.06.00.045'; +if( CheckVersion( $DBversion ) ) { + $dbh->do( "UPDATE systempreferences SET value = '2' WHERE value = '0' AND variable = 'UsageStats'" ); + + SetVersion( $DBversion ); + print "Upgrade to $DBversion done (Bug 23866 - Set HEA syspref to prompt for review)\n"; +} + # 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.20.1