From 7293802becd3741a1f042f233ff614792c9e480f Mon Sep 17 00:00:00 2001 From: Jonathan Druart Date: Wed, 23 Jun 2021 13:08:36 +0000 Subject: [PATCH] Bug 26205: DBRev 21.06.00.005 Signed-off-by: Jonathan Druart --- 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 8d6d2a92a0..b3c28b100b 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.004"; +$VERSION = "21.06.00.005"; 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 5a604db32e..7b33b383a2 100755 --- a/installer/data/mysql/updatedatabase.pl +++ b/installer/data/mysql/updatedatabase.pl @@ -24365,6 +24365,16 @@ if ( CheckVersion($DBversion) ) { NewVersion( $DBversion, 15788, "Split edit_borrowers permission" ); } +$DBversion = '21.06.00.005'; +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