From 8313c80b8dd8ce553440bc28af424794db39d2ef Mon Sep 17 00:00:00 2001 From: Martin Renvoize Date: Fri, 6 Sep 2019 13:20:14 +0100 Subject: [PATCH] Bug 23539: DBRev 19.05.03.003 Signed-off-by: Martin Renvoize (cherry picked from commit 38322b5a43b37575d4d1c2da1d4b5b0ef3b83bf4) Signed-off-by: Fridolin Somers --- Koha.pm | 2 +- installer/data/mysql/atomicupdate/bug_23439.perl | 7 ------- installer/data/mysql/updatedatabase.pl | 8 ++++++++ 3 files changed, 9 insertions(+), 8 deletions(-) delete mode 100644 installer/data/mysql/atomicupdate/bug_23439.perl diff --git a/Koha.pm b/Koha.pm index fc0054b758..89c92a16fe 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 = "19.05.03.002"; +$VERSION = "19.05.03.003"; sub version { return $VERSION; diff --git a/installer/data/mysql/atomicupdate/bug_23439.perl b/installer/data/mysql/atomicupdate/bug_23439.perl deleted file mode 100644 index 3ce88f30ca..0000000000 --- a/installer/data/mysql/atomicupdate/bug_23439.perl +++ /dev/null @@ -1,7 +0,0 @@ -$DBversion = 'XXX'; # will be replaced by the RM -if( CheckVersion( $DBversion ) ) { - $dbh->do(q{ALTER TABLE accountlines CHANGE COLUMN accounttype accounttype varchar(80) default NULL}); - - SetVersion( $DBversion ); - print "Upgrade to $DBversion done (Bug 23539 - accountlines.accounttype should match authorised_values.authorised_value in size)\n"; -} diff --git a/installer/data/mysql/updatedatabase.pl b/installer/data/mysql/updatedatabase.pl index e3d543e55d..e9619351e7 100755 --- a/installer/data/mysql/updatedatabase.pl +++ b/installer/data/mysql/updatedatabase.pl @@ -18801,6 +18801,14 @@ if( CheckVersion( $DBversion ) ) { print "Upgrade to $DBversion done (Bug 23309 - Can't add new subfields to bibliographic frameworks in strict mode)\n"; } +$DBversion = '19.05.03.003'; +if( CheckVersion( $DBversion ) ) { + $dbh->do(q{ALTER TABLE accountlines CHANGE COLUMN accounttype accounttype varchar(80) default NULL}); + + SetVersion( $DBversion ); + print "Upgrade to $DBversion done (Bug 23539 - accountlines.accounttype should match authorised_values.authorised_value in size)\n"; +} + # SEE bug 13068 # if there is anything in the atomicupdate, read and execute it. -- 2.20.1