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/ippTools/share/pxadmin_create_tables.sql

    r27781 r27856  
    13321332        imagedb    VARCHAR(64),
    13331333        rlabel     VARCHAR(64),
     1334        outdir     VARCHAR(255),
    13341335        need_magic TINYINT,
    13351336        PRIMARY KEY(dep_id),
     
    15991600) ENGINE=innodb DEFAULT CHARSET=latin1;
    16001601
     1602CREATE TABLE Label (
     1603    label       VARCHAR(64),
     1604    priority    INT,
     1605    active      TINYINT,
     1606    comment     VARCHAR(80),
     1607    PRIMARY KEY(label),
     1608    KEY(priority),
     1609    KEY(active)
     1610) ENGINE=innodb DEFAULT CHARSET=latin1;
     1611
    16011612-- This comment line is here to avoid empty query error.
    16021613-- Another way to avoid that problem is to omit the semicolon above but I think that is untidy.
Note: See TracChangeset for help on using the changeset viewer.