Browse Source

Bug 20754: DBRev 19.12.00.067

Signed-off-by: Martin Renvoize <martin.renvoize@ptfs-europe.com>
20.05.x
Martin Renvoize 4 years ago
parent
commit
c80ced404f
Signed by: martin.renvoize GPG Key ID: 422B469130441A0F
  1. 2
      Koha.pm
  2. 11
      installer/data/mysql/atomicupdate/bug20754.perl
  3. 20
      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 = "19.12.00.066";
$VERSION = "19.12.00.067";
sub version {
return $VERSION;

11
installer/data/mysql/atomicupdate/bug20754.perl

@ -1,11 +0,0 @@
$DBversion = 'XXX'; # will be replaced by the RM
if( CheckVersion( $DBversion ) ) {
# From: https://stackoverflow.com/questions/3311903/remove-duplicate-rows-in-mysql
$dbh->do(q|
DELETE a
FROM virtualshelfshares as a, virtualshelfshares as b
WHERE a.id < b.id AND a.borrowernumber IS NOT NULL AND a.borrowernumber=b.borrowernumber AND a.shelfnumber=b.shelfnumber
|);
SetVersion( $DBversion );
print "Upgrade to $DBversion done (Bug 20754: Remove double accepted list shares)\n";
}

20
installer/data/mysql/updatedatabase.pl

@ -21510,6 +21510,26 @@ q{INSERT IGNORE INTO permissions (module_bit, code, description) VALUES (26, 'ma
);
}
$DBversion = '19.12.00.067';
if( CheckVersion( $DBversion ) ) {
# From: https://stackoverflow.com/questions/3311903/remove-duplicate-rows-in-mysql
$dbh->do(q|
DELETE a
FROM virtualshelfshares as a, virtualshelfshares as b
WHERE
a.id < b.id
AND
a.borrowernumber IS NOT NULL
AND
a.borrowernumber=b.borrowernumber
AND
a.shelfnumber=b.shelfnumber
|);
SetVersion( $DBversion );
print "Upgrade to $DBversion done (Bug 20754: Remove double accepted list shares)\n";
}
# 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