From 361ee8beabc6fbb1ffd37c12e05b5394e527a442 Mon Sep 17 00:00:00 2001 From: Brendan A Gallagher Date: Wed, 9 Mar 2016 15:14:48 +0000 Subject: [PATCH] DBRev Bug 15084 - Move the currency related code to Koha::Acquisition::Currenc[y|ies] Signed-off-by: Brendan A Gallagher --- Koha.pm | 2 +- .../data/mysql/atomicupdate/15084_currency.sql | 4 ---- installer/data/mysql/updatedatabase.pl | 15 +++++++++++++++ 3 files changed, 16 insertions(+), 5 deletions(-) delete mode 100644 installer/data/mysql/atomicupdate/15084_currency.sql diff --git a/Koha.pm b/Koha.pm index a6a7d68876..eea79ed0c9 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.038"; +$VERSION = "3.23.00.039"; sub version { return $VERSION; diff --git a/installer/data/mysql/atomicupdate/15084_currency.sql b/installer/data/mysql/atomicupdate/15084_currency.sql deleted file mode 100644 index 71c68a5622..0000000000 --- a/installer/data/mysql/atomicupdate/15084_currency.sql +++ /dev/null @@ -1,4 +0,0 @@ -ALTER TABLE suggestions - MODIFY COLUMN currency varchar(10) default NULL; -ALTER TABLE aqbooksellers - MODIFY COLUMN currency varchar(10) default NULL; diff --git a/installer/data/mysql/updatedatabase.pl b/installer/data/mysql/updatedatabase.pl index ec7df9338c..c3cf05d852 100755 --- a/installer/data/mysql/updatedatabase.pl +++ b/installer/data/mysql/updatedatabase.pl @@ -12007,6 +12007,21 @@ if ( C4::Context->preference("Version") < TransformToNum($DBversion) ) { SetVersion($DBversion); } +$DBversion = "3.23.00.039"; +if ( C4::Context->preference("Version") < TransformToNum($DBversion) ) { + + $dbh->do(q{ + ALTER TABLE suggestions + MODIFY COLUMN currency varchar(10) default NULL; + }); + $dbh->do(q{ + ALTER TABLE aqbooksellers + MODIFY COLUMN currency varchar(10) default NULL; + }); + print "Upgrade to $DBversion done (Bug 15084 - Move the currency related code to Koha::Acquisition::Currenc[y|ies])\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