From e7b4411d9d9706bde8a26efefca2529af8f3753c Mon Sep 17 00:00:00 2001 From: Jonathan Druart Date: Mon, 12 Apr 2021 13:25:56 +0000 Subject: [PATCH] Bug 27726: DBRev 20.12.00.029 Signed-off-by: Jonathan Druart (cherry picked from commit 611d3aa4836c2810159937c3bc32f4228a9359e5) Signed-off-by: Fridolin Somers --- Koha.pm | 2 +- installer/data/mysql/atomicupdate/bug_27726.perl | 6 ------ installer/data/mysql/updatedatabase.pl | 7 +++++++ 3 files changed, 8 insertions(+), 7 deletions(-) delete mode 100644 installer/data/mysql/atomicupdate/bug_27726.perl diff --git a/Koha.pm b/Koha.pm index 16c83756a2..1d47cb7698 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 = "20.11.04.000"; +$VERSION = "20.11.04.001"; sub version { return $VERSION; diff --git a/installer/data/mysql/atomicupdate/bug_27726.perl b/installer/data/mysql/atomicupdate/bug_27726.perl deleted file mode 100644 index 01d18acb25..0000000000 --- a/installer/data/mysql/atomicupdate/bug_27726.perl +++ /dev/null @@ -1,6 +0,0 @@ -$DBversion = 'XXX'; # will be replaced by the RM -if( CheckVersion( $DBversion ) ) { - $dbh->do("ALTER TABLE problem_reports MODIFY content TEXT NOT NULL"); - - NewVersion( $DBversion, 27726, "Increase field size for problem_reports.content"); -} diff --git a/installer/data/mysql/updatedatabase.pl b/installer/data/mysql/updatedatabase.pl index 8e93c9a2b6..8ae635a6c5 100755 --- a/installer/data/mysql/updatedatabase.pl +++ b/installer/data/mysql/updatedatabase.pl @@ -23513,6 +23513,13 @@ if( CheckVersion( $DBversion ) ) { NewVersion( $DBversion, "", "Koha 20.11.04 release" ); } +$DBversion = '20.11.04.001'; +if( CheckVersion( $DBversion ) ) { + $dbh->do("ALTER TABLE problem_reports MODIFY content TEXT NOT NULL"); + + NewVersion( $DBversion, 27726, "Increase field size for problem_reports.content"); +} + # SEE bug 13068 # if there is anything in the atomicupdate, read and execute it. my $update_dir = C4::Context->config('intranetdir') . '/installer/data/mysql/atomicupdate/'; -- 2.39.5