From b18f3eddf6f20907c80a7130d0186a0b81c4253d Mon Sep 17 00:00:00 2001 From: Brendan Gallagher Date: Fri, 6 May 2016 04:06:56 +0000 Subject: [PATCH] DBRev Bug 16414 - aqorders.budgetgroup_id has never been used and can be removed Signed-off-by: Brendan Gallagher --- Koha.pm | 2 +- installer/data/mysql/atomicupdate/bug_16414.sql | 1 - installer/data/mysql/updatedatabase.pl | 10 ++++++++++ 3 files changed, 11 insertions(+), 2 deletions(-) delete mode 100644 installer/data/mysql/atomicupdate/bug_16414.sql diff --git a/Koha.pm b/Koha.pm index bbb9ccf9b3..10e3ab3eb4 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.23.00.061"; +$VERSION = "3.23.00.062"; sub version { return $VERSION; diff --git a/installer/data/mysql/atomicupdate/bug_16414.sql b/installer/data/mysql/atomicupdate/bug_16414.sql deleted file mode 100644 index 975e02ffed..0000000000 --- a/installer/data/mysql/atomicupdate/bug_16414.sql +++ /dev/null @@ -1 +0,0 @@ -ALTER TABLE aqorders DROP COLUMN budgetgroup_id; diff --git a/installer/data/mysql/updatedatabase.pl b/installer/data/mysql/updatedatabase.pl index 22576d4c10..1cde4d6fc1 100755 --- a/installer/data/mysql/updatedatabase.pl +++ b/installer/data/mysql/updatedatabase.pl @@ -12567,6 +12567,16 @@ if ( CheckVersion($DBversion) ) { SetVersion($DBversion); } +$DBversion = "3.23.00.062"; +if ( CheckVersion($DBversion) ) { + $dbh->do( q| + ALTER TABLE aqorders DROP COLUMN budgetgroup_id; + |); + print "Upgrade to $DBversion done (Bug 16414 - aqorders.budgetgroup_id has never been used and can be removed)\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