From 40598f8e4fb7a0f772a2fc960df0e67440f4e0a6 Mon Sep 17 00:00:00 2001 From: Kyle M Hall Date: Fri, 24 Jun 2016 14:03:41 +0000 Subject: [PATCH] Bug 16768 - DBRev 16.06.00.005 Signed-off-by: Kyle M Hall --- Koha.pm | 2 +- ...ug_Bug_16768_official_number_format_switzerland.sql | 1 - installer/data/mysql/updatedatabase.pl | 10 ++++++++++ 3 files changed, 11 insertions(+), 2 deletions(-) delete mode 100644 installer/data/mysql/atomicupdate/bug_Bug_16768_official_number_format_switzerland.sql diff --git a/Koha.pm b/Koha.pm index fed90fba4e..5133f0227f 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 = "16.06.00.004"; +$VERSION = "16.06.00.005"; sub version { return $VERSION; diff --git a/installer/data/mysql/atomicupdate/bug_Bug_16768_official_number_format_switzerland.sql b/installer/data/mysql/atomicupdate/bug_Bug_16768_official_number_format_switzerland.sql deleted file mode 100644 index 1e696d4375..0000000000 --- a/installer/data/mysql/atomicupdate/bug_Bug_16768_official_number_format_switzerland.sql +++ /dev/null @@ -1 +0,0 @@ -UPDATE `systempreferences` set options = 'US|FR|CH' where variable = 'CurrencyFormat'; diff --git a/installer/data/mysql/updatedatabase.pl b/installer/data/mysql/updatedatabase.pl index edecf61e0d..ab208701d1 100755 --- a/installer/data/mysql/updatedatabase.pl +++ b/installer/data/mysql/updatedatabase.pl @@ -12673,6 +12673,16 @@ if ( CheckVersion($DBversion) ) { SetVersion($DBversion); } +$DBversion = '16.06.00.005'; +if ( CheckVersion($DBversion) ) { + $dbh->do(q{ + UPDATE `systempreferences` set options = 'US|FR|CH' where variable = 'CurrencyFormat'; + }); + + print "Upgrade to $DBversion done (Bug 16768 - Add official number format for Switzerland: 1'234'567.89)\n"; + SetVersion($DBversion); +} + # DEVELOPER PROCESS, search for anything to execute in the db_update directory # SEE bug 13068 -- 2.39.5