Browse Source

Bug 22518: DBRev 18.12.00.036

Signed-off-by: Nick Clemens <nick@bywatersolutions.com>
Nick Clemens 5 years ago
parent
commit
67c99f585c
  1. 2
      Koha.pm
  2. 16
      installer/data/mysql/atomicupdate/bug_22518.perl
  3. 17
      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 = "18.12.00.035";
$VERSION = "18.12.00.036";
sub version {
return $VERSION;

16
installer/data/mysql/atomicupdate/bug_22518.perl

@ -1,16 +0,0 @@
$DBversion = 'XXX'; # will be replaced by the RM
if ( CheckVersion($DBversion) ) {
my $rows = $dbh->do(
qq{
UPDATE `accountlines`
SET
`accounttype` = 'FU'
WHERE
`accounttype` = 'O'
}
);
SetVersion($DBversion);
printf "Upgrade to $DBversion done (Bug 22518 - Fix accounttype 'O' to 'FU' - %d updated)\n", $rows;
}

17
installer/data/mysql/updatedatabase.pl

@ -17836,6 +17836,23 @@ if( CheckVersion( $DBversion ) ) {
print "Upgrade to $DBversion done (Bug 19722 - Add a MaxItemsToDisplayForBatchMod preference)\n";
}
$DBversion = '18.12.00.036';
if ( CheckVersion($DBversion) ) {
my $rows = $dbh->do(
qq{
UPDATE `accountlines`
SET
`accounttype` = 'FU'
WHERE
`accounttype` = 'O'
}
);
SetVersion($DBversion);
printf "Upgrade to $DBversion done (Bug 22518 - Fix accounttype 'O' to 'FU' - %d updated)\n", $rows;
}
# SEE bug 13068
# if there is anything in the atomicupdate, read and execute it.

Loading…
Cancel
Save