IPP Software Navigation Tools IPP Links Communication Pan-STARRS Links

Changeset 23663


Ignore:
Timestamp:
Apr 1, 2009, 3:24:24 PM (17 years ago)
Author:
bills
Message:

add tables for managing remote copy of distribution bundles
add column no_magic to distRun

Location:
trunk/dbconfig
Files:
1 added
3 edited

Legend:

Unmodified
Added
Removed
  • trunk/dbconfig/changes.txt

    r23565 r23663  
    967967)  ENGINE=innodb DEFAULT CHARSET=latin1;
    968968
     969-- 1.1.51
     970
     971ALTER TABLE distRun ADD COLUMN no_magic TINYINT AFTER clean;
  • trunk/dbconfig/dist.md

    r23361 r23663  
     1distTarget METADATA
     2    target_id   S64        0       # Primary Key
     3    obs_mode    STR        64
     4    clean       BOOL       f
     5    state       STR        64
     6    comment     STR        255
     7END
     8
    19distRun METADATA
    210    dist_id     S64         0       # Primary Key
     11    target_id   S64         0       # fkey(target_id) ref distTarget(target_id)
    312    stage       STR         64
    413    stage_id    S64         0
     
    615    outroot     STR         255
    716    clean       BOOL        f
     17    no_magic    BOOL        f
    818    state       STR         64      # Key
    919    time_stamp  UTC         0001-01-01T00:00:00Z
     
    2131END
    2232
    23 distTarget METADATA
    24     target_id   S64        0       # Primary Key
    25     obs_mode    STR        64
    26     clean       BOOL       f
    27     state       STR        64
    28     comment     STR        255
    29 END
    30 
  • trunk/dbconfig/ipp.m4

    r23391 r23663  
    2323include(pstamp.md)
    2424include(dist.md)
     25include(rc.md)
Note: See TracChangeset for help on using the changeset viewer.