DBRev Bug 15084 - Move the currency related code to
authorBrendan A Gallagher <brendan@bywatersolutions.com>
Wed, 9 Mar 2016 15:14:48 +0000 (15:14 +0000)
committerBrendan A Gallagher <brendan@bywatersolutions.com>
Wed, 9 Mar 2016 15:14:48 +0000 (15:14 +0000)
Koha::Acquisition::Currenc[y|ies]

Signed-off-by: Brendan A Gallagher <brendan@bywatersolutions.com>
Koha.pm
installer/data/mysql/atomicupdate/15084_currency.sql [deleted file]
installer/data/mysql/updatedatabase.pl

diff --git a/Koha.pm b/Koha.pm
index a6a7d68..eea79ed 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.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 (file)
index 71c68a5..0000000
+++ /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;
index ec7df93..c3cf05d 100755 (executable)
@@ -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.