Correct order of updatedatabase entries
authorJared Camins-Esakov <jcamins@cpbibliography.com>
Sun, 17 Mar 2013 13:22:13 +0000 (09:22 -0400)
committerJared Camins-Esakov <jcamins@cpbibliography.com>
Sun, 17 Mar 2013 13:22:13 +0000 (09:22 -0400)
installer/data/mysql/updatedatabase.pl

index 0fe7750..cca1b12 100755 (executable)
@@ -6477,14 +6477,6 @@ if ( CheckVersion($DBversion) ) {
     SetVersion($DBversion);
 }
 
-$DBversion = "3.11.00.030";
-if ( CheckVersion($DBversion) ) {
-    $dbh->do("INSERT INTO systempreferences (variable,value,explanation,options,type) VALUES('FinesIncludeGracePeriod','1','If enabled, fines calculations will include the grace period.',NULL,'YesNo');");
-    print "Upgrade to $DBversion done (Add system preference FinesIncludeGracePeriod)\n";
-    SetVersion($DBversion);
-}
-
-
 $DBversion = "3.11.00.026";
 if ( CheckVersion($DBversion) ) {
     $dbh->do(qq{
@@ -6527,6 +6519,13 @@ if (CheckVersion($DBversion)) {
     SetVersion ($DBversion);
 }
 
+$DBversion = "3.11.00.030";
+if ( CheckVersion($DBversion) ) {
+    $dbh->do("INSERT INTO systempreferences (variable,value,explanation,options,type) VALUES('FinesIncludeGracePeriod','1','If enabled, fines calculations will include the grace period.',NULL,'YesNo');");
+    print "Upgrade to $DBversion done (Add system preference FinesIncludeGracePeriod)\n";
+    SetVersion($DBversion);
+}
+
 
 =head1 FUNCTIONS