Changeset 26015 for trunk/dbconfig
- Timestamp:
- Nov 3, 2009, 1:02:08 PM (17 years ago)
- Location:
- trunk/dbconfig
- Files:
-
- 2 edited
-
changes.txt (modified) (1 diff)
-
dist.md (modified) (2 diffs)
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(); -
trunk/dbconfig/dist.md
r25835 r26015 17 17 label STR 64 # Key 18 18 outroot STR 255 19 outdir STR 255 19 20 clean BOOL f 20 21 no_magic BOOL f … … 31 32 md5sum STR 32 32 33 state STR 64 # Key 34 outdir STR 255 33 35 name STR 255 34 36 fault S16 0
Note:
See TracChangeset
for help on using the changeset viewer.
