Bug 23416: DBRev 19.06.00.020
Signed-off-by: Martin Renvoize <martin.renvoize@ptfs-europe.com>
This commit is contained in:
parent
d559e89596
commit
78c2800bc8
3 changed files with 12 additions and 11 deletions
2
Koha.pm
2
Koha.pm
|
@ -29,7 +29,7 @@ use vars qw{ $VERSION };
|
||||||
# - #4 : the developer version. The 4th number is the database subversion.
|
# - #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
|
# used by developers when the database changes. updatedatabase take care of the changes itself
|
||||||
# and is automatically called by Auth.pm when needed.
|
# and is automatically called by Auth.pm when needed.
|
||||||
$VERSION = "19.06.00.019";
|
$VERSION = "19.06.00.020";
|
||||||
|
|
||||||
sub version {
|
sub version {
|
||||||
return $VERSION;
|
return $VERSION;
|
||||||
|
|
|
@ -1,10 +0,0 @@
|
||||||
$DBversion = 'XXX';
|
|
||||||
if( CheckVersion( $DBversion ) ) {
|
|
||||||
$dbh->do(q|
|
|
||||||
INSERT IGNORE INTO systempreferences ( `variable`, `value`, `options`, `explanation`, `type` ) VALUES
|
|
||||||
('PreserveSerialNotes','1','','When a new "Expected" issue is generated, should it be prefilled with last created issue notes?','YesNo');
|
|
||||||
|);
|
|
||||||
|
|
||||||
SetVersion( $DBversion );
|
|
||||||
print "Upgrade to $DBversion done (Bug 23416 - Add PreserveSerialNotes syspref)\n";
|
|
||||||
}
|
|
|
@ -19239,6 +19239,17 @@ if ( CheckVersion($DBversion) ) {
|
||||||
"Upgrade to $DBversion done (Bug 23228 - Add option to automatically display payment receipt for printing after making a payment)\n";
|
"Upgrade to $DBversion done (Bug 23228 - Add option to automatically display payment receipt for printing after making a payment)\n";
|
||||||
}
|
}
|
||||||
|
|
||||||
|
$DBversion = '19.06.00.020';
|
||||||
|
if( CheckVersion( $DBversion ) ) {
|
||||||
|
$dbh->do(q|
|
||||||
|
INSERT IGNORE INTO systempreferences ( `variable`, `value`, `options`, `explanation`, `type` ) VALUES
|
||||||
|
('PreserveSerialNotes','1','','When a new "Expected" issue is generated, should it be prefilled with last created issue notes?','YesNo');
|
||||||
|
|);
|
||||||
|
|
||||||
|
SetVersion( $DBversion );
|
||||||
|
print "Upgrade to $DBversion done (Bug 23416 - Add PreserveSerialNotes syspref)\n";
|
||||||
|
}
|
||||||
|
|
||||||
# SEE bug 13068
|
# SEE bug 13068
|
||||||
# if there is anything in the atomicupdate, read and execute it.
|
# if there is anything in the atomicupdate, read and execute it.
|
||||||
my $update_dir = C4::Context->config('intranetdir') . '/installer/data/mysql/atomicupdate/';
|
my $update_dir = C4::Context->config('intranetdir') . '/installer/data/mysql/atomicupdate/';
|
||||||
|
|
Loading…
Reference in a new issue