From 5197b22d392053b69cbe4c4449014bee249fbdfe Mon Sep 17 00:00:00 2001 From: Kyle M Hall Date: Fri, 9 Jul 2021 08:37:40 -0400 Subject: [PATCH] Bug 26205: DBRev 21.05.00.004 Signed-off-by: Kyle M Hall --- Koha.pm | 2 +- .../bug_26205_add_newslog_system_pref.perl | 7 ------- installer/data/mysql/updatedatabase.pl | 10 ++++++++++ 3 files changed, 11 insertions(+), 8 deletions(-) delete mode 100644 installer/data/mysql/atomicupdate/bug_26205_add_newslog_system_pref.perl diff --git a/Koha.pm b/Koha.pm index 55b63470a6..db12c54ca6 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.05.01.003"; +$VERSION = "21.05.01.004"; sub version { return $VERSION; diff --git a/installer/data/mysql/atomicupdate/bug_26205_add_newslog_system_pref.perl b/installer/data/mysql/atomicupdate/bug_26205_add_newslog_system_pref.perl deleted file mode 100644 index 2ffbb93231..0000000000 --- a/installer/data/mysql/atomicupdate/bug_26205_add_newslog_system_pref.perl +++ /dev/null @@ -1,7 +0,0 @@ -$DBversion = 'XXX'; # will be replaced by the RM -if( CheckVersion( $DBversion ) ) { - $dbh->do( q| INSERT IGNORE INTO systempreferences (variable, value, explanation, options, type) VALUES ('NewsLog', '0', 'If enabled, log OPAC News changes', '', 'YesNo'); | ); - - # Always end with this (adjust the bug info) - NewVersion( $DBversion, 26205, "Log OPAC News changes"); -} diff --git a/installer/data/mysql/updatedatabase.pl b/installer/data/mysql/updatedatabase.pl index 551f3f7d71..26619d3493 100755 --- a/installer/data/mysql/updatedatabase.pl +++ b/installer/data/mysql/updatedatabase.pl @@ -24348,6 +24348,16 @@ if( CheckVersion( $DBversion ) ) { NewVersion( $DBversion, "", "Koha 21.05.01 release" ); } +$DBversion = '21.05.00.004'; +if( CheckVersion( $DBversion ) ) { + $dbh->do( q{ + INSERT IGNORE INTO systempreferences (variable, value, explanation, options, type) + VALUES ('NewsLog', '0', 'If enabled, log OPAC News changes', '', 'YesNo') + }); + + NewVersion( $DBversion, 26205, "Add new system preference NewsLog to log news changes"); +} + # 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