IPP Software Navigation Tools IPP Links Communication Pan-STARRS Links

Changeset 23521


Ignore:
Timestamp:
Mar 25, 2009, 11:20:39 AM (17 years ago)
Author:
Paul Price
Message:

Removing unused table guidePendingExp

Location:
branches/pap/ippTools/share
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • branches/pap/ippTools/share/pxadmin_create_tables.sql

    r23390 r23521  
    250250ENGINE=innodb DEFAULT CHARSET=latin1;
    251251
    252 CREATE TABLE guidePendingExp (guide_id BIGINT AUTO_INCREMENT, exp_id BIGINT, recipe VARCHAR(64), PRIMARY KEY(guide_id), KEY(guide_id), KEY(exp_id)) ENGINE=innodb DEFAULT CHARSET=latin1;
    253 
    254252CREATE TABLE chipRun (
    255253    chip_id BIGINT AUTO_INCREMENT,
     
    12351233
    12361234CREATE TABLE distTarget (
    1237     target_id   BIGINT AUTO_INCREMENT, 
     1235    target_id   BIGINT AUTO_INCREMENT,
    12381236    obs_mode    VARCHAR(64),
    12391237    stage       VARCHAR(64),
     
    12631261
    12641262CREATE TABLE distComponent (
    1265     dist_id     BIGINT, 
     1263    dist_id     BIGINT,
    12661264    component   VARCHAR(64),
    12671265    bytes       INT,
     
    13351333
    13361334
    1337 -- This comment line is here to avoid empty query error. 
     1335-- This comment line is here to avoid empty query error.
    13381336-- Another way to avoid that problem is to omit the semicolon above but I think that is untidy.
  • branches/pap/ippTools/share/pxadmin_drop_tables.sql

    r23390 r23521  
    11SET FOREIGN_KEY_CHECKS=0;
     2
    23DROP TABLE IF EXISTS pzDataStore;
    34DROP TABLE IF EXISTS summitExp;
     
    910DROP TABLE IF EXISTS rawExp;
    1011DROP TABLE IF EXISTS rawImfile;
    11 DROP TABLE IF EXISTS guidePendingExp;
    1212DROP TABLE IF EXISTS chipRun;
    1313DROP TABLE IF EXISTS chipProcessedImfile;
Note: See TracChangeset for help on using the changeset viewer.