IPP Software Navigation Tools IPP Links Communication Pan-STARRS Links

Ignore:
Timestamp:
May 4, 2010, 10:50:29 AM (16 years ago)
Author:
bills
Message:

Add table Label which through priority column may be used to order
items pending for processing.
Implement usage of this table in the pstamptool pending modes and
chiptool -pendingimfile.
Various other postage stamp changes including adding pstampDependent.outdir

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/dbconfig/changes.txt

    r27781 r27856  
    15951595ALTER TABLE pstampDependent ADD KEY (stage);
    15961596ALTER TABLE pstampDependent ADD KEY (stage_id);
     1597ALTER TABLE pstampDependent ADD KEY (component);
     1598ALTER TABLE pstampDependent ADD KEY (imagedb);
    15971599
    15981600ALTER TABLE magicDSRun ADD KEY(stage);
     
    16021604ALTER TABLE distTarget ADD KEY(stage), ADD KEY(dist_group), ADD KEY(filter), ADD KEY(state);
    16031605
     1606CREATE TABLE Label (
     1607    label       VARCHAR(64),
     1608    priority    INT,
     1609    active      TINYINT,
     1610    comment     VARCHAR(80),
     1611    PRIMARY KEY(label),
     1612    KEY(priority),
     1613    KEY(active)
     1614) ENGINE=innodb DEFAULT CHARSET=latin1;
     1615
Note: See TracChangeset for help on using the changeset viewer.