DBrev Bug 15526 - Drop nozebra database table
authorBrendan Gallagher <brendan@bywatersolutions.com>
Wed, 24 Feb 2016 02:17:53 +0000 (02:17 +0000)
committerBrendan Gallagher <brendan@bywatersolutions.com>
Wed, 24 Feb 2016 02:17:53 +0000 (02:17 +0000)
Signed-off-by: Brendan Gallagher brendan@bywatersolutions.com
Koha.pm
installer/data/mysql/atomicupdate/bug_15526.sql [deleted file]
installer/data/mysql/updatedatabase.pl

diff --git a/Koha.pm b/Koha.pm
index 49a834c..cc349d2 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 = "3.23.00.024";
+$VERSION = "3.23.00.025";
 
 sub version {
     return $VERSION;
diff --git a/installer/data/mysql/atomicupdate/bug_15526.sql b/installer/data/mysql/atomicupdate/bug_15526.sql
deleted file mode 100644 (file)
index 0befea1..0000000
+++ /dev/null
@@ -1 +0,0 @@
-DROP TABLE nozebra;
index 5588aa5..0610e66 100755 (executable)
@@ -11807,6 +11807,16 @@ if ( CheckVersion($DBversion) ) {
     print "Upgrade to $DBversion done (Bug 15517 - Tables borrowers and deletedborrowers differ again)\n";
     SetVersion($DBversion);
 }
+
+$DBversion = "3.23.00.025";
+if ( CheckVersion($DBversion) ) {
+    $dbh->do(q{
+    DROP TABLE nozebra;
+});
+
+    print "Upgrade to $DBversion done (Bug 15526 - Drop nozebra database table)\n";
+    SetVersion($DBversion);
+
 # DEVELOPER PROCESS, search for anything to execute in the db_update directory
 # SEE bug 13068
 # if there is anything in the atomicupdate, read and execute it.