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

    r25711 r25793  
    12501250        outputBase VARCHAR(255),
    12511251        options BIGINT,
     1252        dep_id BIGINT,
    12521253        PRIMARY KEY(job_id, req_id),
    12531254        KEY(job_id),
    12541255        FOREIGN KEY(req_id) REFERENCES pstampRequest(req_id)
     1256) ENGINE=innodb DEFAULT CHARSET=latin1;
     1257
     1258CREATE TABLE pstampDependent (
     1259        dep_id BIGINT AUTO_INCREMENT,
     1260        state      VARCHAR(64),
     1261        stage      VARCHAR(64),
     1262        stage_id   BIGINT,
     1263        image_db   VARCHAR(64),
     1264        rlabel     VARCHAR(64),
     1265        need_magic TINYINT,
     1266        PRIMARY KEY(dep_id)
    12551267) ENGINE=innodb DEFAULT CHARSET=latin1;
    12561268
Note: See TracChangeset for help on using the changeset viewer.