From fc29f2afa177fd3c497bcf5ec4bdb9299d396dc9 Mon Sep 17 00:00:00 2001 From: Martin Renvoize Date: Tue, 14 Apr 2020 16:52:49 +0100 Subject: [PATCH] Bug 22774: DBRev 19.12.00.070 Signed-off-by: Martin Renvoize --- Koha.pm | 2 +- installer/data/mysql/atomicupdate/bug_22774.perl | 11 ----------- installer/data/mysql/updatedatabase.pl | 12 ++++++++++++ 3 files changed, 13 insertions(+), 12 deletions(-) delete mode 100644 installer/data/mysql/atomicupdate/bug_22774.perl diff --git a/Koha.pm b/Koha.pm index 01e170f779..41f77b1400 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.12.00.069"; +$VERSION = "19.12.00.070"; sub version { return $VERSION; diff --git a/installer/data/mysql/atomicupdate/bug_22774.perl b/installer/data/mysql/atomicupdate/bug_22774.perl deleted file mode 100644 index 3cbbb4c7d5..0000000000 --- a/installer/data/mysql/atomicupdate/bug_22774.perl +++ /dev/null @@ -1,11 +0,0 @@ -$DBversion = '19.12.00.XXX'; # will be replaced by the RM -if( CheckVersion( $DBversion ) ) { - - $dbh->do( q{ - INSERT IGNORE INTO systempreferences (variable,value,explanation,type) VALUES - ('MaxTotalSuggestions','','Number of total suggestions used for time limit with NumberOfSuggestionDays','Free'), - ('NumberOfSuggestionDays','','Number of days that will be used to determine the MaxTotalSuggestions limit','Free') - }); - - NewVersion( $DBversion, 22774, "Limit purchase suggestion in a specified time period"); -} diff --git a/installer/data/mysql/updatedatabase.pl b/installer/data/mysql/updatedatabase.pl index 3b7e9811c1..f3d927cd53 100755 --- a/installer/data/mysql/updatedatabase.pl +++ b/installer/data/mysql/updatedatabase.pl @@ -21553,6 +21553,18 @@ if( CheckVersion( $DBversion ) ) { NewVersion( $DBversion, 22784, "Add a new suggestions.archived column"); } +$DBversion = '19.12.00.070'; +if( CheckVersion( $DBversion ) ) { + + $dbh->do( q{ + INSERT IGNORE INTO systempreferences (variable,value,explanation,type) VALUES + ('MaxTotalSuggestions','','Number of total suggestions used for time limit with NumberOfSuggestionDays','Free'), + ('NumberOfSuggestionDays','','Number of days that will be used to determine the MaxTotalSuggestions limit','Free') + }); + + NewVersion( $DBversion, 22774, "Limit purchase suggestion in a specified time period"); +} + # 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.2