From: Nick Clemens Date: Tue, 19 Feb 2019 16:34:41 +0000 (+0000) Subject: Bug 3820: DBRev 18.12.015 X-Git-Url: http://git.rot13.org/?a=commitdiff_plain;h=296f9eae3cbe122cf0a3d426334c9796880ff13c;p=koha.git Bug 3820: DBRev 18.12.015 Signed-off-by: Nick Clemens --- diff --git a/Koha.pm b/Koha.pm index 38d12d08e2..f59abaa0d9 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 = "18.12.00.014"; +$VERSION = "18.12.00.015"; sub version { return $VERSION; diff --git a/installer/data/mysql/atomicupdate/bug_3820.perl b/installer/data/mysql/atomicupdate/bug_3820.perl deleted file mode 100644 index bfc4b51374..0000000000 --- a/installer/data/mysql/atomicupdate/bug_3820.perl +++ /dev/null @@ -1,9 +0,0 @@ -$DBversion = 'XXX'; # will be replaced by the RM -if( CheckVersion( $DBversion ) ) { - $dbh->do( "UPDATE action_logs SET info = REPLACE(info,'cardnumber_replaced','cardnumber') WHERE module='MEMBERS' AND action='MODIFY'" ); - $dbh->do( "UPDATE action_logs SET info = REPLACE(info,'previous_cardnumber','before') WHERE module='MEMBERS' AND action='MODIFY'" ); - $dbh->do( "UPDATE action_logs SET info = REPLACE(info,'new_cardnumber','after') WHERE module='MEMBERS' AND action='MODIFY'" ); - - SetVersion( $DBversion ); - print "Upgrade to $DBversion done (Bug 3820 - Update patron modification logs)\n"; -} diff --git a/installer/data/mysql/updatedatabase.pl b/installer/data/mysql/updatedatabase.pl index cb95c409b2..7062ea1247 100755 --- a/installer/data/mysql/updatedatabase.pl +++ b/installer/data/mysql/updatedatabase.pl @@ -17348,6 +17348,16 @@ if( CheckVersion( $DBversion ) ) { print "Upgrade to $DBversion done (Bug 13515 - Add a FOREIGN KEY constaint on messages.borrowernumber)\n"; } +$DBversion = '18.12.00.015'; +if( CheckVersion( $DBversion ) ) { + $dbh->do( "UPDATE action_logs SET info = REPLACE(info,'cardnumber_replaced','cardnumber') WHERE module='MEMBERS' AND action='MODIFY'" ); + $dbh->do( "UPDATE action_logs SET info = REPLACE(info,'previous_cardnumber','before') WHERE module='MEMBERS' AND action='MODIFY'" ); + $dbh->do( "UPDATE action_logs SET info = REPLACE(info,'new_cardnumber','after') WHERE module='MEMBERS' AND action='MODIFY'" ); + + SetVersion( $DBversion ); + print "Upgrade to $DBversion done (Bug 3820 - Update patron modification logs)\n"; +} + # SEE bug 13068 # if there is anything in the atomicupdate, read and execute it.