From c84fe12d5e0651023448a31d93dcb5224f476c8d Mon Sep 17 00:00:00 2001 From: Brendan A Gallagher Date: Tue, 5 Apr 2016 15:57:05 +0000 Subject: [PATCH] DBrev adding in the missing update DBversion = "3.23.00.046"; Signed-off-by: Brendan A Gallagher --- Koha.pm | 2 +- installer/data/mysql/updatedatabase.pl | 11 +++++++++++ 2 files changed, 12 insertions(+), 1 deletion(-) diff --git a/Koha.pm b/Koha.pm index bed3443c94..625c237af5 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.045"; +$VERSION = "3.23.00.046"; sub version { return $VERSION; diff --git a/installer/data/mysql/updatedatabase.pl b/installer/data/mysql/updatedatabase.pl index 7f0ce61f48..a0a9d10765 100755 --- a/installer/data/mysql/updatedatabase.pl +++ b/installer/data/mysql/updatedatabase.pl @@ -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. -- 2.39.2