Changeset 16353
- Timestamp:
- Feb 7, 2008, 11:20:44 AM (18 years ago)
- File:
-
- 1 edited
-
trunk/dbconfig/changes.txt (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
trunk/dbconfig/changes.txt
r16317 r16353 29 29 alter table warpSkyfile add column ignored tinyint after good_frac; 30 30 31 # 32 # The following set of changes were applied to update the gpc1 database on 2008/02/07 33 # 34 31 35 alter table calDB change column catdir dvodb varchar(64); 32 36 33 alter table camProcessedExp add column ( bias double, bias_stdev double, fringe_0 double, fringe_1 double, fringe_2 double, ap_resid double, ap_resid_stdev double, fwhm_major double, fwhm_minor double, dtime_detrend double, dtime_photom double, dtime_astrom double, hostname varchar(64) ); 34 alter table camProcessedExp drop column fwhm; 35 alter table camProcessedExp drop column fwhm_range; 37 alter table camProcessedExp change column fwhm fwhm_major float; 38 alter table camProcessedExp change column fwhm_range fwhm_minor float; 36 39 37 alter table chipProcessedImfile add column ( zp_mean double, zp_stdev double, fwhm_major double, fwhm_minor double, dtime_detrend double, dtime_photom double, dtime_astrom double, hostname varchar(64) ); 38 alter table chipProcessedImfile drop column fwhm; 39 alter table chipProcessedImfile drop column fwhm_range; 40 # In order to keep the column order correct this is split up below 41 #alter table camProcessedExp add column ( bias float, bias_stdev float, fringe_0 float, fringe_1 float, fringe_2 float, ap_resid float, ap_resid_stdev float, dtime_detrend float, dtime_photom float, dtime_astrom float, hostname varchar(64) ); 40 42 41 alter table diffSkyfile add column ( dtime_diff double, hostname varchar(64) ); 43 alter table camProcessedExp add column bias float after bg_mean_stdev; 44 alter table camProcessedExp add column bias_stdev float after bias; 45 alter table camProcessedExp add column fringe_0 float after bias_stdev; 46 alter table camProcessedExp add column fringe_1 float after fringe_0; 47 alter table camProcessedExp add column fringe_2 float after fringe_1; 48 alter table camProcessedExp add column ap_resid float after sigma_dec; 49 alter table camProcessedExp add column ap_resid_stdev float after ap_resid; 50 alter table camProcessedExp add column dtime_detrend float after fwhm_minor; 51 alter table camProcessedExp add column dtime_photom float after dtime_detrend; 52 alter table camProcessedExp add column dtime_astrom float after dtime_photom; 53 alter table camProcessedExp add column hostname varchar(64) after dtime_astrom; 42 54 43 alter table flatcorrRun add column filter varchar(64);44 55 45 alter table stackSumSkyfile add column ( dtime_stack double, hostname varchar(64) ); 56 alter table chipProcessedImfile change column fwhm fwhm_major float; 57 alter table chipProcessedImfile change column fwhm_range fwhm_minor float; 46 58 47 alter table warpSkyfile add column ( dtime_warp double, hostname varchar(64) ); 59 # In order to keep the column order correct this is split up below 60 #alter table chipProcessedImfile add column ( zp_mean float, zp_stdev float, dtime_detrend float, dtime_photom float, dtime_astrom float, hostname varchar(64) ); 48 61 49 alter table newExp add column tess_id varchar(64); 50 alter table rawExp add column tess_id varchar(64); 51 alter table chipRun add column tess_id varchar(64); 52 alter table camRun add column tess_id varchar(64); 53 alter table warpRun add column tess_id varchar(64); 62 alter table chipProcessedImfile add column zp_mean float after ap_resid_stdev; 63 alter table chipProcessedImfile add column zp_stdev float after zp_mean; 64 alter table chipProcessedImfile add column dtime_detrend float after fwhm_minor; 65 alter table chipProcessedImfile add column dtime_photom float after dtime_detrend; 66 alter table chipProcessedImfile add column dtime_astrom float after dtime_photom; 67 alter table chipProcessedImfile add column hostname varchar(64) after dtime_astrom; 54 68 55 alter table camRun add column end_stage varchar(64); 56 alter table chipRun add column end_stage varchar(64); 57 alter table warpRun add column end_stage varchar(64); 58 alter table newExp add column end_stage varchar(64); 59 alter table rawExp add column end_stage varchar(64); 69 70 # In order to keep the column order correct this is split up below 71 #alter table diffSkyfile add column ( dtime_diff float, hostname varchar(64) ); 72 alter table diffSkyfile add column dtime_diff float after bg_stdev; 73 alter table diffSkyfile add column hostname varchar(64) after dtime_diff; 74 alter table diffSkyfile change column good_frac good_frac float; 75 76 alter table flatcorrRun add column filter varchar(64) after dvodb; 77 78 alter table stackSumSkyfile change column good_frac good_frac float; 79 80 #alter table stackSumSkyfile add column ( dtime_stack float, hostname varchar(64) ); 81 alter table stackSumSkyfile add column dtime_stack float after bg_stdev; 82 alter table stackSumSkyfile add column hostname varchar(64) after dtime_stack; 83 84 #alter table warpSkyfile add column ( dtime_warp float, hostname varchar(64) ); 85 alter table warpSkyfile add column dtime_warp float after bg_stdev; 86 alter table warpSkyfile add column hostname varchar(64) after dtime_warp; 87 88 alter table warpSkyfile change column good_frac good_frac float; 89 90 alter table newExp add column dvodb varchar(255) after reduction; 91 alter table newExp add column tess_id varchar(64) after dvodb; 92 alter table rawExp add column dvodb varchar(255) after reduction; 93 alter table rawExp add column tess_id varchar(64) after dvodb; 94 alter table chipRun add column tess_id varchar(64) after dvodb; 95 alter table camRun add column tess_id varchar(64) after dvodb; 96 alter table warpRun add column tess_id varchar(64) after dvodb; 97 98 alter table camRun add column end_stage varchar(64) after tess_id; 99 alter table chipRun add column end_stage varchar(64) after tess_id; 100 alter table warpRun add column end_stage varchar(64) after tess_id; 101 alter table newExp add column end_stage varchar(64) after tess_id; 102 alter table rawExp add column end_stage varchar(64) after tess_id; 60 103 alter table camRun add key (end_stage); 61 104 alter table chipRun add key (end_stage); … … 64 107 alter table rawExp add key (end_stage); 65 108 66 alter table warpRun add column workdir_state varchar(64) ;109 alter table warpRun add column workdir_state varchar(64) after workdir; 67 110 alter table warpRun add key (workdir_state); 68 111 112 alter table pzDoneImfile add column fault smallint(6); 113 114 115 ######## end of changes to 1.1.29
Note:
See TracChangeset
for help on using the changeset viewer.
