From 8a8b5f1a71796a002484c8e78164b5bf700c9d50 Mon Sep 17 00:00:00 2001 From: Jonathan Druart Date: Fri, 8 Jan 2021 14:21:22 +0000 Subject: [PATCH] Bug 27351: DBRev 20.12.00.002 Signed-off-by: Jonathan Druart (cherry picked from commit 555080c1ddb5178d9673b22fde385219d0fd22ec) Signed-off-by: Fridolin Somers --- Koha.pm | 2 +- installer/data/mysql/atomicupdate/bug_27351.perl | 5 ----- installer/data/mysql/updatedatabase.pl | 6 ++++++ 3 files changed, 7 insertions(+), 6 deletions(-) delete mode 100644 installer/data/mysql/atomicupdate/bug_27351.perl diff --git a/Koha.pm b/Koha.pm index 29a50c09d4..e3fb0f7f15 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.11.01.001"; +$VERSION = "20.11.01.002"; sub version { return $VERSION; diff --git a/installer/data/mysql/atomicupdate/bug_27351.perl b/installer/data/mysql/atomicupdate/bug_27351.perl deleted file mode 100644 index f5f0aa24a3..0000000000 --- a/installer/data/mysql/atomicupdate/bug_27351.perl +++ /dev/null @@ -1,5 +0,0 @@ -$DBversion = 'XXX'; -if( CheckVersion( $DBversion ) ) { - $dbh->do(q{UPDATE systempreferences SET `type` = 'Choice' WHERE `variable` = 'UsageStatsCountry'}); - NewVersion( $DBversion, 27351, "Set type for UsageStatsCountry to Choice"); -} diff --git a/installer/data/mysql/updatedatabase.pl b/installer/data/mysql/updatedatabase.pl index b7a7b3678f..3a0c142138 100755 --- a/installer/data/mysql/updatedatabase.pl +++ b/installer/data/mysql/updatedatabase.pl @@ -23431,6 +23431,12 @@ if( CheckVersion( $DBversion ) ) { NewVersion( $DBversion, 27252, "Add ElasticsearchCrossFields system preference"); } +$DBversion = '20.11.01.002'; +if( CheckVersion( $DBversion ) ) { + $dbh->do(q{UPDATE systempreferences SET `type` = 'Choice' WHERE `variable` = 'UsageStatsCountry'}); + NewVersion( $DBversion, 27351, "Set type for UsageStatsCountry to Choice"); +} + # 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