Browse Source

Bug 26205: DBRev 21.06.00.005

Signed-off-by: Jonathan Druart <jonathan.druart@bugs.koha-community.org>
21.11.x
Jonathan Druart 3 years ago
parent
commit
7293802bec
  1. 2
      Koha.pm
  2. 7
      installer/data/mysql/atomicupdate/bug_26205_add_newslog_system_pref.perl
  3. 10
      installer/data/mysql/updatedatabase.pl

2
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;

7
installer/data/mysql/atomicupdate/bug_26205_add_newslog_system_pref.perl

@ -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");
}

10
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/';

Loading…
Cancel
Save