Bug 16768 - DBRev 16.06.00.005
authorKyle M Hall <kyle@bywatersolutions.com>
Fri, 24 Jun 2016 14:03:41 +0000 (14:03 +0000)
committerKyle M Hall <kyle@bywatersolutions.com>
Fri, 24 Jun 2016 14:03:41 +0000 (14:03 +0000)
Signed-off-by: Kyle M Hall <kyle@bywatersolutions.com>
Koha.pm
installer/data/mysql/atomicupdate/bug_Bug_16768_official_number_format_switzerland.sql [deleted file]
installer/data/mysql/updatedatabase.pl

diff --git a/Koha.pm b/Koha.pm
index fed90fb..5133f02 100644 (file)
--- 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 (file)
index 1e696d4..0000000
+++ /dev/null
@@ -1 +0,0 @@
-UPDATE `systempreferences` set options = 'US|FR|CH' where variable = 'CurrencyFormat';
index edecf61..ab20870 100755 (executable)
@@ -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