Changeset 26015 for trunk/dbconfig/changes.txt
- Timestamp:
- Nov 3, 2009, 1:02:08 PM (17 years ago)
- File:
-
- 1 edited
-
trunk/dbconfig/changes.txt (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
trunk/dbconfig/changes.txt
r25929 r26015 1424 1424 ALTER TABLE publishClient ADD COLUMN active TINYINT DEFAULT 0 AFTER client_id; 1425 1425 1426 1427 1428 -- UPDATE dbversion set schema_version = '1.1.57', updated= CURRENT_TIMESTAMP(); 1426 # add outdir to allow spreading files over multiple hosts 1427 ALTER TABLE distRun ADD COLUMN outdir VARCHAR(255) AFTER outroot; 1428 ALTER TABLE distComponent ADD COLUMN outdir VARCHAR(255) AFTER state; 1429 1430 # populate the existing runs (except for bills' test runs) 1431 UPDATE distRun SET outdir = CONCAT_WS('.', outroot, dist_id) WHERE outroot not like '%@HOST@%'; 1432 UPDATE distRun join distComponent using(dist_id) SET distComponent.outdir = CONCAT_WS('.', distRun.outroot, dist_id); 1433 1434 UPDATE dbversion set schema_version = '1.1.57', updated= CURRENT_TIMESTAMP(); 1435 1436 -- Vesion 1.1.58 1437 -- UPDATE dbversion set schema_version = '1.1.58', updated= CURRENT_TIMESTAMP();
Note:
See TracChangeset
for help on using the changeset viewer.
