Bug 20082: DBRev 17.12.00.020
authorJonathan Druart <jonathan.druart@bugs.koha-community.org>
Mon, 26 Feb 2018 16:09:18 +0000 (13:09 -0300)
committerJonathan Druart <jonathan.druart@bugs.koha-community.org>
Mon, 26 Feb 2018 16:24:44 +0000 (13:24 -0300)
Signed-off-by: Jonathan Druart <jonathan.druart@bugs.koha-community.org>
Koha.pm
installer/data/mysql/atomicupdate/bug_20082_fix_vietnamese_description.sql [deleted file]
installer/data/mysql/updatedatabase.pl

diff --git a/Koha.pm b/Koha.pm
index 985be47..8c737f8 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 = "17.12.00.019";
+$VERSION = "17.12.00.020";
 
 sub version {
     return $VERSION;
diff --git a/installer/data/mysql/atomicupdate/bug_20082_fix_vietnamese_description.sql b/installer/data/mysql/atomicupdate/bug_20082_fix_vietnamese_description.sql
deleted file mode 100644 (file)
index d1a1f2d..0000000
+++ /dev/null
@@ -1,6 +0,0 @@
-INSERT IGNORE INTO language_descriptions(subtag, type, lang, description)
-  VALUES ('vi', 'language', 'de', 'Vietnamesisch');
-UPDATE language_descriptions SET description = 'Tiếng Việt'
-  WHERE subtag = 'vi' and type = 'language' and lang = 'vi';
-
--- print "Upgrade to $DBversion done (Bug 20082 - Update descriptions of Vietnamese language)\n";
index 5c94963..5436db9 100755 (executable)
@@ -15584,6 +15584,23 @@ if( CheckVersion( $DBversion ) ) {
     print "Upgrade to $DBversion done (Bug 20074 - Auth_subfield_structure changes hidden attribute)\n";
 }
 
+$DBversion = '17.12.00.020';
+if( CheckVersion( $DBversion ) ) {
+
+    $dbh->do(q|
+        INSERT IGNORE INTO language_descriptions(subtag, type, lang, description)
+        VALUES ('vi', 'language', 'de', 'Vietnamesisch')
+    |);
+
+    $dbh->do(q|
+        UPDATE language_descriptions SET description = 'Tiếng Việt'
+        WHERE subtag = 'vi' and type = 'language' and lang = 'vi'
+    |);
+
+    SetVersion( $DBversion );
+    print "Upgrade to $DBversion done (Bug 20082 - Update descriptions of Vietnamese language)\n";
+}
+
 # SEE bug 13068
 # if there is anything in the atomicupdate, read and execute it.