From 775adc1e9adbc647b3389019ded546b81e46c6e3 Mon Sep 17 00:00:00 2001 From: Jonathan Druart Date: Mon, 26 Feb 2018 13:23:38 -0300 Subject: [PATCH] Bug 13287: DBRev 17.12.00.021 Signed-off-by: Jonathan Druart --- Koha.pm | 2 +- ...AddPurgeSuggestionsOlderThan_SystemPreference.sql | 2 -- installer/data/mysql/updatedatabase.pl | 12 ++++++++++++ 3 files changed, 13 insertions(+), 3 deletions(-) delete mode 100644 installer/data/mysql/atomicupdate/bug_13287_AddPurgeSuggestionsOlderThan_SystemPreference.sql diff --git a/Koha.pm b/Koha.pm index 8c737f8fba..211db4b389 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 = "17.12.00.020"; +$VERSION = "17.12.00.021"; sub version { return $VERSION; diff --git a/installer/data/mysql/atomicupdate/bug_13287_AddPurgeSuggestionsOlderThan_SystemPreference.sql b/installer/data/mysql/atomicupdate/bug_13287_AddPurgeSuggestionsOlderThan_SystemPreference.sql deleted file mode 100644 index 6c66bbc8fe..0000000000 --- a/installer/data/mysql/atomicupdate/bug_13287_AddPurgeSuggestionsOlderThan_SystemPreference.sql +++ /dev/null @@ -1,2 +0,0 @@ -INSERT IGNORE INTO systempreferences ( `variable`, `value`, `options`, `explanation`, `type` ) VALUES -('PurgeSuggestionsOlderThan', '', NULL, 'If this script is called without the days parameter', 'Integer'); diff --git a/installer/data/mysql/updatedatabase.pl b/installer/data/mysql/updatedatabase.pl index 5436db9694..d85bb0ec05 100755 --- a/installer/data/mysql/updatedatabase.pl +++ b/installer/data/mysql/updatedatabase.pl @@ -15601,6 +15601,18 @@ if( CheckVersion( $DBversion ) ) { print "Upgrade to $DBversion done (Bug 20082 - Update descriptions of Vietnamese language)\n"; } +$DBversion = '17.12.00.021'; +if( CheckVersion( $DBversion ) ) { + + $dbh->do(q| + INSERT IGNORE INTO systempreferences ( `variable`, `value`, `options`, `explanation`, `type` ) VALUES + ('PurgeSuggestionsOlderThan', '', NULL, 'Default value for cronjob purge_suggestions.pl', 'Integer'); + |); + + SetVersion( $DBversion ); + print "Upgrade to $DBversion done (Bug 19290 - Add system preference BrowseResultSelection)\n"; +} + # SEE bug 13068 # if there is anything in the atomicupdate, read and execute it. -- 2.20.1