|
Lines 10035-10040
if ( CheckVersion($DBversion) ) {
Link Here
|
| 10035 |
SetVersion ($DBversion); |
10035 |
SetVersion ($DBversion); |
| 10036 |
} |
10036 |
} |
| 10037 |
|
10037 |
|
|
|
10038 |
$DBversion = "3.19.00.XXX"; |
| 10039 |
if ( CheckVersion($DBversion) ) { |
| 10040 |
$dbh->do(q| |
| 10041 |
ALTER TABLE sessions CHANGE COLUMN a_session a_session MEDIUMTEXT |
| 10042 |
|); |
| 10043 |
print "Upgrade to $DBversion done (Bug 13606: Upgrade sessions.a_session to MEDIUMTEXT)\n"; |
| 10044 |
SetVersion($DBversion); |
| 10045 |
} |
| 10046 |
|
| 10038 |
# DEVELOPER PROCESS, search for anything to execute in the db_update directory |
10047 |
# DEVELOPER PROCESS, search for anything to execute in the db_update directory |
| 10039 |
# SEE bug 13068 |
10048 |
# SEE bug 13068 |
| 10040 |
# if there is anything in the atomicupdate, read and execute it. |
10049 |
# if there is anything in the atomicupdate, read and execute it. |
| 10041 |
- |
|
|