Browse Source

Bug 25232: DBRev 20.06.00.002

Signed-off-by: Jonathan Druart <jonathan.druart@bugs.koha-community.org>
20.11.x
Jonathan Druart 4 years ago
parent
commit
905553f304
  1. 2
      Koha.pm
  2. 11
      installer/data/mysql/atomicupdate/bug_25232.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 = "20.06.00.001";
$VERSION = "20.06.00.002";
sub version {
return $VERSION;

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

@ -1,11 +0,0 @@
$DBversion = 'XXX'; # will be replaced by the RM
if( CheckVersion( $DBversion ) ) {
# $dbh->do( "ALTER TABLE biblio ADD COLUMN badtaste int" );
$dbh->do(q{
INSERT INTO systempreferences ( `variable`, `value`, `options`, `explanation`, `type` ) VALUES
('SkipHoldTrapOnNotForLoanValue','',NULL,'If set, Koha will never trap items for hold with this notforloan value','Integer')
});
# Always end with this (adjust the bug info)
NewVersion( $DBversion, 25184, "Items with a negative notforloan status should not be captured for holds");
}

10
installer/data/mysql/updatedatabase.pl

@ -22200,6 +22200,16 @@ if( CheckVersion( $DBversion ) ) {
NewVersion( $DBversion, 24986, "Switch borrowers address related fields to TINYTEXT or MEDIUMTEXT");
}
$DBversion = '20.06.00.002';
if( CheckVersion( $DBversion ) ) {
$dbh->do(q{
INSERT IGNORE INTO systempreferences ( `variable`, `value`, `options`, `explanation`, `type` ) VALUES
('SkipHoldTrapOnNotForLoanValue','',NULL,'If set, Koha will never trap items for hold with this notforloan value','Integer')
});
NewVersion( $DBversion, 25184, "Items with a negative notforloan status should not be captured for holds");
}
# 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