IPP Software Navigation Tools IPP Links Communication Pan-STARRS Links

Ignore:
Timestamp:
Jun 16, 2009, 10:21:18 AM (17 years ago)
Author:
Paul Price
Message:

Moving workdir under publishClient so it doesn't have to be defined for every run (which is going to run regularly under pantasks)

File:
1 edited

Legend:

Unmodified
Added
Removed
  • branches/pap_mops/dbconfig/changes.txt

    r24377 r24428  
    11281128
    11291129-- Tables to support publishing of detections to a Science Client
     1130
    11301131-- Clients to which we send stuff
    11311132CREATE TABLE publishClient (
    11321133    client_id BIGINT AUTO_INCREMENT, -- unique identifier
     1134    product VARCHAR(64),             -- product name
     1135    stage VARCHAR(64) NOT NULL, -- stage of interest (chip, camera, diff, etc.)
     1136    workdir VARCHAR(255) NOT NULL, -- working directory
    11331137    comment VARCHAR(255),            -- for human memory
    1134     stage VARCHAR(64) NOT NULL, -- stage of interest (chip, camera, diff, etc.)
    1135     format VARCHAR(64),              -- format of data
    1136     destination VARCHAR(255) NOT NULL, -- where to send data
    11371138    PRIMARY KEY(client_id)
    11381139) ENGINE=innodb DEFAULT CHARSET=latin1;
     
    11521153) ENGINE=innodb DEFAULT CHARSET=latin1;
    11531154-- Publishing a file within a set
    1154 CREATE TABLE publishFile (
     1155CREATE TABLE publishDone (
    11551156    pub_id BIGINT AUTO_INCREMENT, -- link to publishRun
    1156     component VARCHAR(64),        -- analagous to class_id or skycell_id
     1157    path_base VARCHAR(255),     -- base path of output
    11571158    fault SMALLINT NOT NULL DEFAULT 0, -- Fault code
    1158     PRIMARY KEY(pub_id, component),
    1159     KEY(component),
     1159    PRIMARY KEY(pub_id),
    11601160    KEY(fault),
    11611161    FOREIGN KEY(pub_id) REFERENCES publishRun(pub_id)
    11621162) ENGINE=innodb DEFAULT CHARSET=latin1;
     1163
Note: See TracChangeset for help on using the changeset viewer.