Bug 21288: DBRev 18.06.00.029
authorNick Clemens <nick@bywatersolutions.com>
Sat, 15 Sep 2018 21:44:05 +0000 (21:44 +0000)
committerNick Clemens <nick@bywatersolutions.com>
Sat, 15 Sep 2018 21:44:05 +0000 (21:44 +0000)
Signed-off-by: Nick Clemens <nick@bywatersolutions.com>
Koha.pm
installer/data/mysql/atomicupdate/bug_21288.perl [deleted file]
installer/data/mysql/updatedatabase.pl

diff --git a/Koha.pm b/Koha.pm
index bc85f79..b2f74a5 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.06.00.028";
+$VERSION = "18.06.00.029";
 
 sub version {
     return $VERSION;
diff --git a/installer/data/mysql/atomicupdate/bug_21288.perl b/installer/data/mysql/atomicupdate/bug_21288.perl
deleted file mode 100644 (file)
index a4a102a..0000000
+++ /dev/null
@@ -1,9 +0,0 @@
-$DBversion = 'XXX';  # will be replaced by the RM
-if( CheckVersion( $DBversion ) ) {
-    $dbh->do(q{
-        CREATE INDEX `by_biblionumber` ON `subscription` (`biblionumber`)
-    });
-
-    SetVersion( $DBversion );
-    print "Upgrade to $DBversion done (Bug 21288: Slowness in acquisition caused by GetInvoices\n";
-}
index 6d07b38..13592c9 100755 (executable)
@@ -16396,6 +16396,17 @@ INSERT IGNORE INTO systempreferences ( `variable`, `value`, `options`, `explanat
     print "Upgrade to $DBversion done (Bug 19469 - Add ability to split view of holds view on record by pickup library and/or itemtype)\n";
 }
 
+$DBversion = '18.06.00.029';
+if( CheckVersion( $DBversion ) ) {
+    unless ( index_exists( 'subscription', 'by_biblionumber' ) ) {
+        $dbh->do(q{
+            CREATE INDEX `by_biblionumber` ON `subscription` (`biblionumber`)
+        });
+    }
+    SetVersion( $DBversion );
+    print "Upgrade to $DBversion done (Bug 21288: Slowness in acquisition caused by GetInvoices\n";
+}
+
 # SEE bug 13068
 # if there is anything in the atomicupdate, read and execute it.