IPP Software Navigation Tools IPP Links Communication Pan-STARRS Links

Ignore:
Timestamp:
Apr 13, 2009, 4:32:41 PM (17 years ago)
Author:
bills
Message:

modes to disttool for creating rcDSFileset objects
tweaks to the rcDSFileset and rcDSProduct tables

File:
1 edited

Legend:

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

    r23776 r23842  
    12501250    dbname      VARCHAR(64),
    12511251    dbhost      VARCHAR(64),
    1252     prod_root   VARCHAR(255),
    12531252    PRIMARY KEY(prod_id)
    12541253)  ENGINE=innodb DEFAULT CHARSET=latin1;
     
    12811280    dist_id     BIGINT,
    12821281    prod_id     BIGINT,
    1283     name        VARCHAR(64),
     1282    name        VARCHAR(255),
    12841283    state       VARCHAR(64),
    12851284    registered  TIMESTAMP DEFAULT CURRENT_TIMESTAMP,
    1286     PRIMARY KEY(fs_id),
     1285    fault       SMALLINT DEFAULT 0,
     1286    PRIMARY KEY(dist_id, prod_id),
     1287    KEY(fs_id),
    12871288    FOREIGN KEY(dist_id) REFERENCES distRun(dist_id),
    12881289    FOREIGN KEY(prod_id) REFERENCES rcDSProduct(prod_id)
     1290--    KEY(dist_id, prod_id)
    12891291)  ENGINE=innodb DEFAULT CHARSET=latin1;
    12901292
Note: See TracChangeset for help on using the changeset viewer.