Bug 23416: DBRev 19.06.00.020

Signed-off-by: Martin Renvoize <martin.renvoize@ptfs-europe.com>
This commit is contained in:
Martin Renvoize 2019-08-12 14:37:23 +01:00
parent d559e89596
commit 78c2800bc8
Signed by: martin.renvoize
GPG key ID: 422B469130441A0F
3 changed files with 12 additions and 11 deletions

View file

@ -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.06.00.019";
$VERSION = "19.06.00.020";
sub version {
return $VERSION;

View file

@ -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";
}

View file

@ -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";
}
$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
# if there is anything in the atomicupdate, read and execute it.
my $update_dir = C4::Context->config('intranetdir') . '/installer/data/mysql/atomicupdate/';