Changeset 19325 for trunk/ippTools/share/pxadmin_create_tables.sql
- Timestamp:
- Sep 2, 2008, 9:37:06 AM (18 years ago)
- File:
-
- 1 edited
-
trunk/ippTools/share/pxadmin_create_tables.sql (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
trunk/ippTools/share/pxadmin_create_tables.sql
r19219 r19325 976 976 ) ENGINE=innodb DEFAULT CHARSET=latin1; 977 977 978 CREATE TABLE flatcorrExp ( 978 -- XXX deprecate this table 979 -- CREATE TABLE flatcorrExp ( 980 -- corr_id BIGINT, 981 -- chip_id BIGINT, 982 -- PRIMARY KEY(corr_id, chip_id), 983 -- FOREIGN KEY (corr_id) REFERENCES flatcorrRun(corr_id), 984 -- FOREIGN KEY (chip_id) REFERENCES chipRun(chip_id) 985 -- ) ENGINE=innodb DEFAULT CHARSET=latin1; 986 987 -- these two tables link the flatcorrRun to the associated chip and camera runs 988 CREATE TABLE flatcorrChipLink ( 979 989 corr_id BIGINT, 980 990 chip_id BIGINT, … … 982 992 FOREIGN KEY (corr_id) REFERENCES flatcorrRun(corr_id), 983 993 FOREIGN KEY (chip_id) REFERENCES chipRun(chip_id) 994 ) ENGINE=innodb DEFAULT CHARSET=latin1; 995 996 CREATE TABLE flatcorrCamLink ( 997 corr_id BIGINT, 998 cam_id BIGINT, 999 PRIMARY KEY(corr_id, cam_id), 1000 FOREIGN KEY (corr_id) REFERENCES flatcorrRun(corr_id), 1001 FOREIGN KEY (cam_id) REFERENCES camRun(cam_id) 984 1002 ) ENGINE=innodb DEFAULT CHARSET=latin1; 985 1003
Note:
See TracChangeset
for help on using the changeset viewer.
