IPP Software Navigation Tools IPP Links Communication Pan-STARRS Links

Changeset 35896 for trunk/ippTools/share


Ignore:
Timestamp:
Aug 6, 2013, 11:05:55 AM (13 years ago)
Author:
bills
Message:

Add columns ippRelease.dvodb and ippRelease.ubercal_file and relExp.ubercal_dist

Location:
trunk/ippTools/share
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/ippTools/share/pxadmin_create_tables.sql

    r35838 r35896  
    21722172    dataRelease INT,         -- PSPS dataRelease
    21732173    priority    INT,
     2174    dvodb       VARCHAR(255),
     2175    ubercal_file VARCHAR(255),
    21742176    PRIMARY KEY(rel_id),
    21752177    UNIQUE KEY(surveyID, release_name),
     
    21862188    chip_id     BIGINT,         -- links to the runs that supplied the data
    21872189    cam_id      BIGINT,         -- for this release
    2188     group_id    INT,         -- id of relGroup that this exposure is contained in
     2190    group_id    INT,            -- id of relGroup that this exposure is contained in
    21892191    state       VARCHAR(16),    -- released, pending, archive, drop 
    2190     flags       INT UNSIGNED,  -- flags for relphot, relastro, ??
     2192    flags       INT UNSIGNED,   -- flags for relphot, relastro, ??
    21912193    zpt_obs     FLOAT,          -- calibrated zero point for this release of
    21922194    zpt_stdev   FLOAT,          -- this exposure
     2195    ubercal_dist INT,           -- ubercal distance (from dvo calibration)
    21932196    path_base   VARCHAR(255),   -- path_base of any supporting files for this
    21942197                                -- release of this exposure.
     
    23032306) ENGINE=InnoDB DEFAULT CHARSET=latin1;
    23042307
     2308
    23052309-- These comment lines are here to avoid an empty query error.
    23062310-- Another way to avoid that problem is to omit the semicolon above but I think that is untidy.
  • trunk/ippTools/share/pxadmin_drop_tables.sql

    r35838 r35896  
    118118DROP TABLE IF EXISTS mergedvodbProcessed;
    119119DROP TABLE IF EXISTS mergedvodbRun;
     120DROP TABLE IF EXISTS dqstatsContent;
    120121DROP TABLE IF EXISTS dqstatsRun;
    121 DROP TABLE IF EXISTS dqstatsContent;
    122122
    123123SET FOREIGN_KEY_CHECKS=1
Note: See TracChangeset for help on using the changeset viewer.