Changeset 19325 for trunk/ippTools/share
- Timestamp:
- Sep 2, 2008, 9:37:06 AM (18 years ago)
- Location:
- trunk/ippTools/share
- Files:
-
- 2 added
- 2 edited
-
Makefile.am (modified) (1 diff)
-
flatcorr_chiprundone.sql (added)
-
flatcorr_pendingprocess.sql (added)
-
pxadmin_create_tables.sql (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
trunk/ippTools/share/Makefile.am
r19249 r19325 88 88 faketool_revertprocessedimfile.sql \ 89 89 faketool_unmasked.sql \ 90 flatcorr_completely_processed_chiprun.sql \ 91 flatcorr_create_tmp_chiprundone.sql \ 92 flatcorr_find_completed_floatcorruns.sql \ 93 flatcorr_find_processedimfiles.sql \ 94 flatcorr_pending.sql \ 90 flatcorr_chiprundone.sql \ 91 flatcorr_pendingprocess.sql \ 95 92 magictool_addmask.sql \ 96 93 magictool_create_tmp_warpcomplete.sql \ -
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.
