IPP Software Navigation Tools IPP Links Communication Pan-STARRS Links

Ignore:
Timestamp:
Jan 19, 2012, 3:39:28 PM (15 years ago)
Author:
bills
Message:

Add support for pstampJobs that depend on other jobs. This will be used to implement
working dependency checking for detectability queries

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/ippTools/share/pxadmin_create_tables.sql

    r33032 r33119  
    14421442        fault SMALLINT,
    14431443        PRIMARY KEY(req_id),
    1444         KEY(req_id)
     1444        KEY(req_id),
     1445        KEY(state),
     1446        KEY(fault),
     1447        KEY(label)
    14451448) ENGINE=innodb DEFAULT CHARSET=latin1;
    14461449
     
    14561459        options BIGINT,
    14571460        dep_id BIGINT,
     1461        fault_count INT,
     1462        parent_id BIGINT DEFAULT NULL,
     1463        is_parent TINYINT DEFAULT 0,
    14581464        PRIMARY KEY(job_id, req_id),
    14591465        KEY(job_id),
     1466        KEY(req_id),
     1467        KEY(state),
     1468        KEY(fault),
     1469        KEY(dep_id),
     1470        KEY(parent_id),
     1471        KEY(is_parent),
    14601472        FOREIGN KEY(req_id) REFERENCES pstampRequest(req_id)
    14611473) ENGINE=innodb DEFAULT CHARSET=latin1;
     
    14681480        component  VARCHAR(64),
    14691481        imagedb    VARCHAR(64),
     1482        outdir     VARCHAR(255),
    14701483        rlabel     VARCHAR(64),
    14711484        need_magic TINYINT,
    1472         outdir     VARCHAR(255),
    14731485        fault      SMALLINT,
    14741486        fault_count INT,
     
    14771489        KEY(stage),
    14781490        KEY(stage_id),
     1491        KEY(component),
     1492        KEY(imagedb),
    14791493        KEY(fault)
    14801494) ENGINE=innodb DEFAULT CHARSET=latin1;
Note: See TracChangeset for help on using the changeset viewer.