From 19551b4e780cc881b9645bfe14df9bb9855c19e2 Mon Sep 17 00:00:00 2001 From: Jonathan Druart Date: Mon, 12 Jul 2021 13:45:17 +0000 Subject: [PATCH] Bug 20472: DBRev 21.06.00.010 Signed-off-by: Jonathan Druart --- Koha.pm | 2 +- installer/data/mysql/atomicupdate/bug_20472b.perl | 8 -------- installer/data/mysql/updatedatabase.pl | 9 +++++++++ 3 files changed, 10 insertions(+), 9 deletions(-) delete mode 100644 installer/data/mysql/atomicupdate/bug_20472b.perl diff --git a/Koha.pm b/Koha.pm index ca7b67c95f..aab3d94000 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 = "21.06.00.009"; +$VERSION = "21.06.00.010"; sub version { return $VERSION; diff --git a/installer/data/mysql/atomicupdate/bug_20472b.perl b/installer/data/mysql/atomicupdate/bug_20472b.perl deleted file mode 100644 index d33859c525..0000000000 --- a/installer/data/mysql/atomicupdate/bug_20472b.perl +++ /dev/null @@ -1,8 +0,0 @@ -$DBversion = 'XXX'; # will be replaced by the RM -if( CheckVersion( $DBversion ) ) { - $dbh->do(q{ - INSERT IGNORE INTO systempreferences ( `variable`, `value`, `options`, `explanation`, `type` ) VALUES - ('ArticleRequestsSupportedFormats', 'PHOTOCOPY', 'PHOTOCOPY|SCAN', 'List supported formats between vertical bars', 'free') - }); - NewVersion( $DBversion, 20472, "Add syspref ArticleRequestsSupportedFormats"); -} diff --git a/installer/data/mysql/updatedatabase.pl b/installer/data/mysql/updatedatabase.pl index 8c95d919f0..fd97a34c50 100755 --- a/installer/data/mysql/updatedatabase.pl +++ b/installer/data/mysql/updatedatabase.pl @@ -24437,6 +24437,15 @@ if( CheckVersion( $DBversion ) ) { NewVersion( $DBversion, 20472, "Add columns format and urls in article_requests table"); } +$DBversion = '21.06.00.010'; +if( CheckVersion( $DBversion ) ) { + $dbh->do(q{ + INSERT IGNORE INTO systempreferences ( `variable`, `value`, `options`, `explanation`, `type` ) VALUES + ('ArticleRequestsSupportedFormats', 'PHOTOCOPY', 'PHOTOCOPY|SCAN', 'List supported formats between vertical bars', 'free') + }); + NewVersion( $DBversion, 20472, "Add syspref ArticleRequestsSupportedFormats"); +} + # 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.11.0