From 112af732e3685bb46b227caa147e6a9aa3e6226c Mon Sep 17 00:00:00 2001 From: Nick Clemens Date: Fri, 10 Aug 2018 12:38:34 +0000 Subject: [PATCH] Bug 20997: DBRev 18.06.00.013 Signed-off-by: Nick Clemens --- Koha.pm | 2 +- installer/data/mysql/atomicupdate/bug_20997.perl | 11 ----------- installer/data/mysql/updatedatabase.pl | 9 +++++++++ 3 files changed, 10 insertions(+), 12 deletions(-) delete mode 100644 installer/data/mysql/atomicupdate/bug_20997.perl diff --git a/Koha.pm b/Koha.pm index ba450bc416..a475070d96 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.06.00.012"; +$VERSION = "18.06.00.013"; sub version { return $VERSION; diff --git a/installer/data/mysql/atomicupdate/bug_20997.perl b/installer/data/mysql/atomicupdate/bug_20997.perl deleted file mode 100644 index 49f22787c1..0000000000 --- a/installer/data/mysql/atomicupdate/bug_20997.perl +++ /dev/null @@ -1,11 +0,0 @@ -$DBversion = 'XXX'; -if( CheckVersion( $DBversion ) ) { - - # Add 'credit_applied' offset type - $dbh->do(q{ - INSERT IGNORE INTO `account_offset_types` (`type`) VALUES ('Credit Applied'); - }); - - SetVersion( $DBversion ); - print "Upgrade to $DBversion done (Bug 20997 - Add Koha::Account::Line::apply)\n"; -} diff --git a/installer/data/mysql/updatedatabase.pl b/installer/data/mysql/updatedatabase.pl index 24e78f5e91..5567c3bcf3 100755 --- a/installer/data/mysql/updatedatabase.pl +++ b/installer/data/mysql/updatedatabase.pl @@ -16228,6 +16228,15 @@ if( CheckVersion( $DBversion ) ) { print "Upgrade to $DBversion done (Bug 11911 - Add separate permission for managing suggestions)\n"; } +$DBversion = '18.06.00.013'; +if( CheckVersion( $DBversion ) ) { + $dbh->do(q{ + INSERT IGNORE INTO `account_offset_types` (`type`) VALUES ('Credit Applied'); + }); + SetVersion( $DBversion ); + print "Upgrade to $DBversion done (Bug 20997 - Add Koha::Account::Line::apply)\n"; +} + # SEE bug 13068 # if there is anything in the atomicupdate, read and execute it. -- 2.39.2