Bug 22132: DBRev 18.12.00.012
authorNick Clemens <nick@bywatersolutions.com>
Thu, 31 Jan 2019 13:36:04 +0000 (13:36 +0000)
committerNick Clemens <nick@bywatersolutions.com>
Thu, 31 Jan 2019 13:36:11 +0000 (13:36 +0000)
Signed-off-by: Nick Clemens <nick@bywatersolutions.com>

Koha.pm
installer/data/mysql/atomicupdate/bug_22132_basic_auth.perl [deleted file]
installer/data/mysql/updatedatabase.pl

diff --git a/Koha.pm b/Koha.pm
index e5b1a0d..e69dcb7 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 = "18.12.00.011";
+$VERSION = "18.12.00.012";
 
 sub version {
     return $VERSION;
diff --git a/installer/data/mysql/atomicupdate/bug_22132_basic_auth.perl b/installer/data/mysql/atomicupdate/bug_22132_basic_auth.perl
deleted file mode 100644 (file)
index ae98472..0000000
+++ /dev/null
@@ -1,13 +0,0 @@
-$DBversion = 'XXX';
-if( CheckVersion( $DBversion ) ) {
-
-    $dbh->do(q{
-        INSERT IGNORE INTO systempreferences
-            (variable, value, options, explanation, type )
-        VALUES
-            ('RESTBasicAuth','0',NULL,'If enabled, Basic authentication is enabled for the REST API.','YesNo')
-    });
-
-    SetVersion( $DBversion );
-    print "Upgrade to $DBversion done (Bug 22132 - Add Basic authentication)\n";
-}
index 329f208..510777e 100755 (executable)
@@ -17310,6 +17310,18 @@ if( CheckVersion( $DBversion ) ) {
     print "Upgrade to $DBversion done (Bug 22155 - biblio_metadata.marcflavour should be renamed 'schema')\n";
 }
 
+$DBversion = '18.12.00.012';
+if( CheckVersion( $DBversion ) ) {
+    $dbh->do(q{
+        INSERT IGNORE INTO systempreferences
+            (variable, value, options, explanation, type )
+        VALUES
+            ('RESTBasicAuth','0',NULL,'If enabled, Basic authentication is enabled for the REST API.','YesNo')
+    });
+    SetVersion( $DBversion );
+    print "Upgrade to $DBversion done (Bug 22132 - Add Basic authentication)\n";
+}
+
 # SEE bug 13068
 # if there is anything in the atomicupdate, read and execute it.