IPP Software Navigation Tools IPP Links Communication Pan-STARRS Links

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.)

File:
1 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
Note: See TracChangeset for help on using the changeset viewer.