|
Lines 13907-13912
if( CheckVersion( $DBversion ) ) {
Link Here
|
| 13907 |
print "Upgrade to $DBversion done (Bug 17453 - Inter-site holds improvement)\n"; |
13907 |
print "Upgrade to $DBversion done (Bug 17453 - Inter-site holds improvement)\n"; |
| 13908 |
} |
13908 |
} |
| 13909 |
|
13909 |
|
|
|
13910 |
$DBversion = "16.12.00.010"; |
| 13911 |
if( CheckVersion( $DBversion ) ) { |
| 13912 |
$dbh->do(q{ |
| 13913 |
ALTER TABLE borrowers ADD overdrive_auth_token text default NULL AFTER lastseen; |
| 13914 |
}); |
| 13915 |
|
| 13916 |
$dbh->do(q{ |
| 13917 |
INSERT IGNORE INTO systempreferences (variable,value,explanation,options,type) |
| 13918 |
VALUES ('OverDriveCirculation','0','Enable client to see their OverDrive account','','YesNo'); |
| 13919 |
}); |
| 13920 |
|
| 13921 |
SetVersion( $DBversion ); |
| 13922 |
print "Upgrade to $DBversion done (Bug 16034 - Integration with OverDrive Patron API)\n"; |
| 13923 |
} |
| 13924 |
|
| 13910 |
# DEVELOPER PROCESS, search for anything to execute in the db_update directory |
13925 |
# DEVELOPER PROCESS, search for anything to execute in the db_update directory |
| 13911 |
# SEE bug 13068 |
13926 |
# SEE bug 13068 |
| 13912 |
# if there is anything in the atomicupdate, read and execute it. |
13927 |
# if there is anything in the atomicupdate, read and execute it. |
| 13913 |
- |
|
|