From 611d3aa4836c2810159937c3bc32f4228a9359e5 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 --- 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 07620e6786..19aa4a573c 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.12.00.028"; +$VERSION = "20.12.00.029"; 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 babefb16c9..0c9498132e 100755 --- a/installer/data/mysql/updatedatabase.pl +++ b/installer/data/mysql/updatedatabase.pl @@ -23790,6 +23790,13 @@ if ( CheckVersion($DBversion) ) { NewVersion( $DBversion, 14233, "Add id field to letter table" ); } +$DBversion = '20.12.00.029'; +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