Changeset 24377 for branches/pap_mops/dbconfig/changes.txt
- Timestamp:
- Jun 10, 2009, 5:49:03 PM (17 years ago)
- File:
-
- 1 edited
-
branches/pap_mops/dbconfig/changes.txt (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
branches/pap_mops/dbconfig/changes.txt
r24376 r24377 1132 1132 client_id BIGINT AUTO_INCREMENT, -- unique identifier 1133 1133 comment VARCHAR(255), -- for human memory 1134 stage VARCHAR(64) ,-- stage of interest (chip, camera, diff, etc.)1134 stage VARCHAR(64) NOT NULL, -- stage of interest (chip, camera, diff, etc.) 1135 1135 format VARCHAR(64), -- format of data 1136 destination VARCHAR(255) ,-- where to send data1136 destination VARCHAR(255) NOT NULL, -- where to send data 1137 1137 PRIMARY KEY(client_id) 1138 1138 ) ENGINE=innodb DEFAULT CHARSET=latin1; … … 1140 1140 CREATE TABLE publishRun ( 1141 1141 pub_id BIGINT AUTO_INCREMENT, -- unique identifier 1142 client_id BIGINT, -- link to publishClient 1143 stage_id BIGINT, -- link to various stage tables 1142 client_id BIGINT NOT NULL, -- link to publishClient 1143 stage_id BIGINT NOT NULL, -- link to various stage tables 1144 label VARCHAR(64), -- label for run 1145 state VARCHAR(64), -- state of run (new, full, etc.) 1144 1146 PRIMARY KEY(pub_id), 1145 1147 KEY(client_id), 1146 1148 KEY(stage_id), 1149 KEY(label), 1150 KEY(state), 1147 1151 FOREIGN KEY(client_id) REFERENCES publishClient(client_id) 1148 1152 ) ENGINE=innodb DEFAULT CHARSET=latin1;
Note:
See TracChangeset
for help on using the changeset viewer.
