Bug 14395 - DBRev 3.23.00.031

This commit is contained in:
Kyle Hall 2016-02-26 14:33:27 +00:00
parent 69364a41db
commit 447b1ea939
4 changed files with 12 additions and 4 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 = "3.23.00.030";
$VERSION = "3.23.00.031";
sub version {
return $VERSION;

View file

@ -1 +0,0 @@
INSERT IGNORE INTO systempreferences ( `variable`, `value`, `options`, `explanation`, `type` ) VALUES ('OpacMaintenanceNotice','','','A user-defined block of HTML to appear on screen when OpacMaintenace is enabled','Textarea');

View file

@ -1,2 +0,0 @@
INSERT IGNORE INTO systempreferences (variable,value,explanation,options,type)
VALUES ('NoRenewalBeforePrecision', 'date', 'Calculate "No renewal before" based on date or exact time. Only relevant for loans calculated in days, hourly loans are not affected.', 'date|exact_time', 'Choice');

View file

@ -11881,6 +11881,17 @@ if(CheckVersion($DBversion)) {
SetVersion($DBversion);
}
$DBversion = "3.23.00.031";
if(CheckVersion($DBversion)) {
$dbh->do(q{
INSERT IGNORE INTO systempreferences (variable,value,explanation,options,type)
VALUES ('NoRenewalBeforePrecision', 'date', 'Calculate "No renewal before" based on date or exact time. Only relevant for loans calculated in days, hourly loans are not affected.', 'date|exact_time', 'Choice')
});
print "Upgrade to $DBversion done (Bug 14395 - Two different ways to calculate 'No renewal before')\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.