Bug 11008: DBRev 3.19.00.020
authorTomas Cohen Arazi <tomascohen@gmail.com>
Mon, 13 Apr 2015 13:14:24 +0000 (10:14 -0300)
committerTomas Cohen Arazi <tomascohen@gmail.com>
Mon, 13 Apr 2015 13:20:04 +0000 (10:20 -0300)
installer/data/mysql/updatedatabase.pl
kohaversion.pl

index 6025447..bdc3abf 100755 (executable)
@@ -9573,15 +9573,6 @@ if( CheckVersion($DBversion) ){
     $dbh->do("INSERT INTO systempreferences (variable, explanation, type) VALUES('DefaultLongOverdueLostValue', 'Set the LOST value of an item to n when the item has been overdue for more than defaultlongoverduedays days.', 'integer')");
     $dbh->do("INSERT INTO systempreferences (variable, explanation, type) VALUES('DefaultLongOverdueDays', 'Set the LOST value of an item when the item has been overdue for more than n days.',  'integer')");
     print "Upgrade to $DBversion done (Bug 8337: System preferences for longoverdue cron)\n";
-}
-
-$DBversion = "3.17.00.XXX";
-if ( CheckVersion($DBversion) ) {
-    $dbh->do(q|
-        ALTER TABLE aqorders DROP COLUMN supplierreference;
-    |);
-
-    print "Upgrade to $DBversion done (Bug 11008 - DROP column aqorders.supplierreference)\n";
     SetVersion($DBversion);
 }
 
@@ -9987,6 +9978,15 @@ if ( CheckVersion($DBversion) ) {
     SetVersion($DBversion);
 }
 
+$DBversion = "3.19.00.020";
+if ( CheckVersion($DBversion) ) {
+    $dbh->do(q|
+        ALTER TABLE aqorders DROP COLUMN supplierreference;
+    |);
+
+    print "Upgrade to $DBversion done (Bug 11008: DROP column aqorders.supplierreference)\n";
+    SetVersion($DBversion);
+}
 
 # DEVELOPER PROCESS, search for anything to execute in the db_update directory
 # SEE bug 13068
index 4c2db81..7d3832e 100644 (file)
@@ -17,7 +17,7 @@ the kohaversion is divided in 4 parts :
 use strict;
 
 sub kohaversion {
-    our $VERSION = '3.19.00.019';
+    our $VERSION = '3.19.00.020';
     # version needs to be set this way
     # so that it can be picked up by Makefile.PL
     # during install