IPP Software Navigation Tools IPP Links Communication Pan-STARRS Links

Changeset 35295 for trunk/dbconfig


Ignore:
Timestamp:
Mar 11, 2013, 2:03:24 PM (13 years ago)
Author:
bills
Message:

add username, proj_id, and registered to table pstampRequest

Location:
trunk/dbconfig
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/dbconfig/changes.txt

    r35239 r35295  
    23992399UPDATE dbversion set schema_version = '1.1.75', updated= CURRENT_TIMESTAMP();
    24002400
     2401
     2402-- new Postage Stamp Request columns
     2403-- Note: These do not aply to the gpc1 database because the pstamp tables were
     2404-- deleted from that database.
     2405ALTER TABLE pstampRequest ADD COLUMN username VARCHAR(255) AFTER outdir;
     2406ALTER TABLE pstampRequest ADD COLUMN proj_id BIGINT AFTER username;
     2407ALTER TABLE pstampRequest ADD COLUMN registered DATETIME AFTER proj_id;
     2408
     2409-- default to the gpc1 project
     2410UPDATE pstampRequest SET proj_id = 1;
  • trunk/dbconfig/pstamp.md

    r33119 r35295  
    3232    uri         STR         255
    3333    outdir      STR         255
     34    username    STR         255
     35    proj_id     S64         0
     36    registered  UTC         0001-01-01T00:00:00Z
    3437    timestamp   UTC         0001-01-01T00:00:00Z
    3538    fault       S32         0
Note: See TracChangeset for help on using the changeset viewer.