- Timestamp:
- Jun 15, 2009, 5:28:09 PM (17 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/pap_mops/ippTools/share/pxadmin_create_tables.sql
r24377 r24427 1374 1374 CREATE TABLE publishClient ( 1375 1375 client_id BIGINT AUTO_INCREMENT, -- unique identifier 1376 product VARCHAR(64), -- product name 1377 stage VARCHAR(64) NOT NULL, -- stage of interest (chip, camera, diff, etc.) 1376 1378 comment VARCHAR(255), -- for human memory 1377 stage VARCHAR(64) NOT NULL, -- stage of interest (chip, camera, diff, etc.)1378 format VARCHAR(64), -- format of data1379 destination VARCHAR(255) NOT NULL, -- where to send data1380 1379 PRIMARY KEY(client_id) 1381 1380 ) ENGINE=innodb DEFAULT CHARSET=latin1; … … 1386 1385 client_id BIGINT NOT NULL, -- link to publishClient 1387 1386 stage_id BIGINT NOT NULL, -- link to various stage tables 1387 workdir VARCHAR(255) NOT NULL, -- working directory 1388 1388 label VARCHAR(64), -- label for run 1389 1389 state VARCHAR(64), -- state of run (new, full, etc.) … … 1397 1397 1398 1398 -- Publishing a file within a set 1399 CREATE TABLE publish File (1399 CREATE TABLE publishDone ( 1400 1400 pub_id BIGINT AUTO_INCREMENT, -- link to publishRun 1401 component VARCHAR(64), -- analagous to class_id or skycell_id1401 path_base VARCHAR(255), -- base path of output 1402 1402 fault SMALLINT NOT NULL DEFAULT 0, -- Fault code 1403 PRIMARY KEY(pub_id, component), 1404 KEY(component), 1403 PRIMARY KEY(pub_id), 1405 1404 KEY(fault), 1406 1405 FOREIGN KEY(pub_id) REFERENCES publishRun(pub_id)
Note:
See TracChangeset
for help on using the changeset viewer.
