IPP Software Navigation Tools IPP Links Communication Pan-STARRS Links

Changeset 27149 for trunk/dbconfig


Ignore:
Timestamp:
Mar 2, 2010, 6:29:45 PM (16 years ago)
Author:
watersc1
Message:

Code and regtool rewrites to enable the lossy compression of old data that aren't scientifically useful.

Location:
trunk/dbconfig
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/dbconfig/changes.txt

    r27042 r27149  
    15271527ALTER TABLE publishClient ADD COLUMN magicked TINYINT DEFAULT 1 AFTER stage;
    15281528
     1529ALTER TABLE rawExp ADD COLUMN state VARCHAR(64) AFTER workdir, ADD KEY(state);
     1530UPDATE rawExp SET state = 'full';
     1531
     1532ALTER TABLE rawImfile ADD COLUMN data_state VARCHAR(64) AFTER uri, ADD KEY(data_state);
     1533UPDATE rawImfile SET data_state = 'full';
     1534
     1535-- Not updating schema_version to not break distribution bundles.
     1536-- UPDATE dbversion set schema_version = '1.1.65', updated= CURRENT_TIMESTAMP();
     1537
     1538-- Version 1.1.66
     1539
  • trunk/dbconfig/raw.md

    r25420 r27149  
    1010    filelevel   STR         64
    1111    workdir     STR         255     # destination for output files
     12    state       STR         64      # Key
    1213    reduction   STR         64      # Reduction class
    1314    dvodb       STR         255
     
    7778    class_id    STR         64      # Primary Key
    7879    uri         STR         255
     80    data_state  STR         64      # Key
    7981    exp_type    STR         64
    8082# This field is used to set the per exp filelevel. Thus the values for all of
Note: See TracChangeset for help on using the changeset viewer.