Bug 14395 - DBRev 3.23.00.031
This commit is contained in:
parent
69364a41db
commit
447b1ea939
4 changed files with 12 additions and 4 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 = "3.23.00.030";
|
$VERSION = "3.23.00.031";
|
||||||
|
|
||||||
sub version {
|
sub version {
|
||||||
return $VERSION;
|
return $VERSION;
|
||||||
|
|
|
@ -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');
|
|
|
@ -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');
|
|
|
@ -11881,6 +11881,17 @@ if(CheckVersion($DBversion)) {
|
||||||
SetVersion($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
|
# DEVELOPER PROCESS, search for anything to execute in the db_update directory
|
||||||
# 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.
|
||||||
|
|
Loading…
Reference in a new issue