- Timestamp:
- Aug 30, 2013, 4:48:58 PM (13 years ago)
- Location:
- branches/eam_branches/ipp-20130711/ippTools/share
- Files:
-
- 2 edited
-
. (modified) (1 prop)
-
pxadmin_create_tables.sql (modified) (3 diffs, 1 prop)
Legend:
- Unmodified
- Added
- Removed
-
branches/eam_branches/ipp-20130711/ippTools/share
- Property svn:mergeinfo changed
/trunk/ippTools/share (added) merged: 35838-35839,35856,35896-35897,35901,35929,35936,35952-35953,35955,35960,36009,36040-36041
- Property svn:mergeinfo changed
-
branches/eam_branches/ipp-20130711/ippTools/share/pxadmin_create_tables.sql
- Property svn:mergeinfo changed
/trunk/ippTools/share/pxadmin_create_tables.sql (added) merged: 35838,35896-35897
r35789 r36071 2172 2172 dataRelease INT, -- PSPS dataRelease 2173 2173 priority INT, 2174 dvodb VARCHAR(255), 2175 ubercal_file VARCHAR(255), 2174 2176 PRIMARY KEY(rel_id), 2175 2177 UNIQUE KEY(surveyID, release_name), … … 2186 2188 chip_id BIGINT, -- links to the runs that supplied the data 2187 2189 cam_id BIGINT, -- for this release 2188 group_id INT, -- id of relGroup that this exposure is contained in2190 group_id INT, -- id of relGroup that this exposure is contained in 2189 2191 state VARCHAR(16), -- released, pending, archive, drop 2190 flags INT UNSIGNED, -- flags for relphot, relastro, ??2192 flags INT UNSIGNED, -- flags for relphot, relastro, ?? 2191 2193 zpt_obs FLOAT, -- calibrated zero point for this release of 2192 2194 zpt_stdev FLOAT, -- this exposure 2195 mcal FLOAT, -- this exposure 2196 ubercal_dist INT, -- ubercal distance (from dvo calibration) 2193 2197 path_base VARCHAR(255), -- path_base of any supporting files for this 2194 2198 -- release of this exposure. … … 2273 2277 ) ENGINE=innodb DEFAULT CHARSET=latin1; 2274 2278 2279 CREATE TABLE dqstatsRun ( 2280 dqstats_id BIGINT NOT NULL AUTO_INCREMENT, 2281 state VARCHAR(64) DEFAULT NULL, 2282 registered TIMESTAMP NOT NULL DEFAULT CURRENT_TIMESTAMP, 2283 label VARCHAR(64) DEFAULT NULL, 2284 fault SMALLINT NOT NULL, 2285 PRIMARY KEY (dqstats_id), 2286 KEY label (label), 2287 KEY fault (fault) 2288 ) ENGINE=InnoDB DEFAULT CHARSET=latin1; 2289 2290 CREATE TABLE dqstatsContent ( 2291 dqstats_id BIGINT, 2292 exp_id BIGINT, 2293 chip_id BIGINT, 2294 cam_id BIGINT, 2295 warp_id BIGINT, 2296 invalid TINYINT DEFAULT NULL, 2297 KEY dqstats_id (dqstats_id), 2298 KEY exp_id (exp_id), 2299 KEY chip_id (chip_id), 2300 KEY cam_id (cam_id), 2301 KEY warp_id (warp_id), 2302 FOREIGN KEY (dqstats_id) REFERENCES dqstatsRun (dqstats_id), 2303 FOREIGN KEY (exp_id) REFERENCES rawExp (exp_id), 2304 FOREIGN KEY (chip_id) REFERENCES chipRun (chip_id), 2305 FOREIGN KEY (cam_id) REFERENCES camRun (cam_id), 2306 FOREIGN KEY (warp_id) REFERENCES warpRun (warp_id) 2307 ) ENGINE=InnoDB DEFAULT CHARSET=latin1; 2275 2308 2276 2309 - Property svn:mergeinfo changed
Note:
See TracChangeset
for help on using the changeset viewer.
