Browse Source

Bug 20410: DBRev 20.12.00.010

Signed-off-by: Jonathan Druart <jonathan.druart@bugs.koha-community.org>
21.05.x
Jonathan Druart 3 years ago
parent
commit
8302be444a
  1. 2
      Koha.pm
  2. 8
      installer/data/mysql/atomicupdate/bug_20410.perl
  3. 9
      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 = "20.12.00.009";
$VERSION = "20.12.00.010";
sub version {
return $VERSION;

8
installer/data/mysql/atomicupdate/bug_20410.perl

@ -1,8 +0,0 @@
$DBversion = 'XXX'; # will be replaced by the RM
if( CheckVersion( $DBversion ) ) {
$dbh->do( q{
DELETE FROM systempreferences WHERE variable="OpacGroupResults"
});
NewVersion( $DBversion, 20410, "Remove OpacGroupResults");
}

9
installer/data/mysql/updatedatabase.pl

@ -23485,6 +23485,15 @@ if( CheckVersion( $DBversion ) ) {
NewVersion( $DBversion, 27581, "Rename system preference 'UseICU' to 'UseICUStyleQuotes'");
}
$DBversion = '20.12.00.010';
if( CheckVersion( $DBversion ) ) {
$dbh->do( q{
DELETE FROM systempreferences WHERE variable="OpacGroupResults"
});
NewVersion( $DBversion, 20410, "Remove OpacGroupResults");
}
# 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