IPP Software Navigation Tools IPP Links Communication Pan-STARRS Links

Changeset 25793 for trunk/dbconfig


Ignore:
Timestamp:
Oct 7, 2009, 1:05:22 PM (17 years ago)
Author:
bills
Message:

Add new table pstampDependent. An entry gets created by the postage stamp request parser
when the source run has been cleaned. The pstampJob is blocked from running until
the system detects that the run has been updated and magicked. (This code is yet
to be developed.)

Location:
trunk/dbconfig
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/dbconfig/changes.txt

    r25711 r25793  
    13001300
    13011301ALTER TABLE pstampJob ADD COLUMN options BIGINT;
     1302ALTER TABLE pstampJob ADD COLUMN dep_id BIGINT;
     1303CREATE TABLE pstampDependent (
     1304        dep_id BIGINT AUTO_INCREMENT,
     1305        stage      VARCHAR(64),
     1306        stage_id   BIGINT,
     1307        need_magic TINYINT,
     1308        image_db   VARCHAR(64),
     1309        rlabel     VARCHAR(64),
     1310        PRIMARY KEY(dep_id)
     1311) ENGINE=innodb DEFAULT CHARSET=latin1;
     1312
  • trunk/dbconfig/pstamp.md

    r25711 r25793  
    4040    outputBase  STR         255
    4141    options     S64         64
     42    dep_id      S64         0
    4243END
     44
     45pstampDependent       METADATA
     46    dep_id      S64         0       # Primary Key AUTO_INCREMENT
     47    state       STR         64
     48    stage       STR         64
     49    stage_id    S64         0
     50    imagedb     STR         64
     51    rlabel      STR         64
     52    no_magic    BOOL        f
     53END
Note: See TracChangeset for help on using the changeset viewer.