From 90ae454b9ada7aa3ee00389416ca392bd72c52c4 Mon Sep 17 00:00:00 2001 From: Andrew Fuerste-Henry Date: Sun, 25 Apr 2021 14:34:28 +0000 Subject: [PATCH] DBRev 20.05.10.001 Signed-off-by: Andrew Fuerste-Henry --- Koha.pm | 2 +- installer/data/mysql/atomicupdate/bug_27726.perl | 6 ------ installer/data/mysql/updatedatabase.pl | 6 ++++++ 3 files changed, 7 insertions(+), 7 deletions(-) delete mode 100644 installer/data/mysql/atomicupdate/bug_27726.perl diff --git a/Koha.pm b/Koha.pm index c4f23c5dfb..46b5282bae 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.05.10.000"; +$VERSION = "20.05.10.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 195c672a4a..c752fc161b 100755 --- a/installer/data/mysql/updatedatabase.pl +++ b/installer/data/mysql/updatedatabase.pl @@ -22582,6 +22582,12 @@ if ( CheckVersion($DBversion) ) { SetVersion ($DBversion); } +$DBversion = '20.05.10.001'; # 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"); +} # SEE bug 13068 # if there is anything in the atomicupdate, read and execute it. -- 2.39.5