Bug 15498 - DBRev 16.12.00.018

Signed-off-by: Kyle M Hall <kyle@bywatersolutions.com>
This commit is contained in:
Kyle Hall 2017-03-31 11:19:50 +00:00
parent 2b0b5d68de
commit 0fcfc561ad
3 changed files with 19 additions and 7 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 = "16.12.00.017";
$VERSION = "16.12.00.018";
sub version {
return $VERSION;

View file

@ -1,6 +0,0 @@
INSERT IGNORE INTO systempreferences ( variable, value, options, explanation, type )
SELECT 'ExportCircHistory', COUNT(*), NULL, "Display the export circulation options", 'YesNo'
FROM systempreferences
WHERE ( variable = 'ExportRemoveFields' AND value != "" AND value IS NOT NULL )
OR ( variable = 'ExportWithCsvProfile' AND value != "" AND value IS NOT NULL );
DELETE FROM systempreferences WHERE variable="ExportWithCsvProfile";

View file

@ -14016,6 +14016,24 @@ if ( CheckVersion($DBversion) ) {
SetVersion($DBversion);
}
$DBversion = "16.12.00.018";
if ( CheckVersion($DBversion) ) {
$dbh->do(q{
INSERT IGNORE INTO systempreferences ( variable, value, options, explanation, type )
SELECT 'ExportCircHistory', COUNT(*), NULL, "Display the export circulation options", 'YesNo'
FROM systempreferences
WHERE ( variable = 'ExportRemoveFields' AND value != "" AND value IS NOT NULL )
OR ( variable = 'ExportWithCsvProfile' AND value != "" AND value IS NOT NULL );
});
$dbh->do(q{
DELETE FROM systempreferences WHERE variable="ExportWithCsvProfile";
});
print "Upgrade to $DBversion done (Bug 15498 - Replace ExportWithCsvProfile with ExportCircHistory)'\n";
SetVersion($DBversion);
}
# DEVELOPER PROCESS, search for anything to execute in the db_update directory
# SEE bug 13068
# if there is anything in the atomicupdate, read and execute it.