IPP Software Navigation Tools IPP Links Communication Pan-STARRS Links

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

add username, proj_id, and registered to table pstampRequest

File:
1 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;
Note: See TracChangeset for help on using the changeset viewer.