From 72d13a26642d922628c6d589fbf65e5baaf66a9e Mon Sep 17 00:00:00 2001 From: Julian Maurice Date: Mon, 7 Mar 2016 13:22:02 +0100 Subject: [PATCH] Bug 15526: Update DB rev (3.22.04.002) --- Koha.pm | 2 +- installer/data/mysql/atomicupdate/bug_15526.sql | 1 - installer/data/mysql/updatedatabase.pl | 9 +++++++++ 3 files changed, 10 insertions(+), 2 deletions(-) delete mode 100644 installer/data/mysql/atomicupdate/bug_15526.sql diff --git a/Koha.pm b/Koha.pm index 2b93b782de..79081e7fb1 100644 --- 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.22.04.001"; +$VERSION = "3.22.04.002"; 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 index 0befea1c69..0000000000 --- a/installer/data/mysql/atomicupdate/bug_15526.sql +++ /dev/null @@ -1 +0,0 @@ -DROP TABLE nozebra; diff --git a/installer/data/mysql/updatedatabase.pl b/installer/data/mysql/updatedatabase.pl index 25cbf75f1f..2513636e3b 100755 --- a/installer/data/mysql/updatedatabase.pl +++ b/installer/data/mysql/updatedatabase.pl @@ -11493,6 +11493,15 @@ if ( CheckVersion($DBversion) ) { SetVersion($DBversion); } +$DBversion = "3.22.04.002"; +if ( CheckVersion($DBversion) ) { + $dbh->do(q{ + DROP TABLE IF EXISTS 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. -- 2.39.5