IPP Software Navigation Tools IPP Links Communication Pan-STARRS Links

Ignore:
Timestamp:
Jul 8, 2009, 6:16:07 PM (17 years ago)
Author:
bills
Message:

change distTarget.obs_mode to distTarget.label add filter require that
label, filter, stage, cleaned be unique

File:
1 edited

Legend:

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

    r24681 r24725  
    12141214CREATE TABLE distTarget (
    12151215    target_id   BIGINT AUTO_INCREMENT,
    1216     obs_mode    VARCHAR(64),
     1216    label       VARCHAR(64),
     1217    filter      VARCHAR(64),
    12171218    stage       VARCHAR(64),
    12181219    clean       TINYINT,
     
    12201221    comment     VARCHAR(255),
    12211222    PRIMARY KEY(target_id)
     1223    CONSTRAINT UNIQUE (label, filter, stage, clean),
    12221224)  ENGINE=innodb DEFAULT CHARSET=latin1;
    12231225
Note: See TracChangeset for help on using the changeset viewer.