DBrev adding in the missing update DBversion = "3.23.00.046";
authorBrendan A Gallagher <brendan@bywatersolutions.com>
Tue, 5 Apr 2016 15:57:05 +0000 (15:57 +0000)
committerBrendan A Gallagher <brendan@bywatersolutions.com>
Tue, 5 Apr 2016 15:57:05 +0000 (15:57 +0000)
Signed-off-by: Brendan A Gallagher <brendan@bywatersolutions.com>
Koha.pm
installer/data/mysql/updatedatabase.pl

diff --git a/Koha.pm b/Koha.pm
index bed3443..625c237 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.045";
+$VERSION = "3.23.00.046";
 
 sub version {
     return $VERSION;
index 7f0ce61..a0a9d10 100755 (executable)
@@ -12195,6 +12195,17 @@ if ( C4::Context->preference("Version") < TransformToNum($DBversion) ) {
    SetVersion($DBversion);
 }
 
+$DBversion = "3.23.00.046";
+if ( C4::Context->preference("Version") < TransformToNum($DBversion) ) {
+
+    $dbh->do(q{
+    ALTER TABLE vendor_edi_accounts ADD COLUMN plugin VARCHAR(256) NOT NULL DEFAULT “”;
+    });
+
+    print "Upgrade to $DBversion done (Bug 15630 - Make Edifact module pluggable))\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.