Browse Source

Bug 26205: DBRev 21.05.00.004

Signed-off-by: Kyle M Hall <kyle@bywatersolutions.com>
21.05.x
Kyle Hall 3 years ago
parent
commit
5197b22d39
  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.05.01.003";
$VERSION = "21.05.01.004";
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

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

Loading…
Cancel
Save