IPP Software Navigation Tools IPP Links Communication Pan-STARRS Links

Changeset 26378 for trunk/dbconfig


Ignore:
Timestamp:
Dec 9, 2009, 12:14:22 PM (17 years ago)
Author:
watersc1
Message:

dqstatstool: I forgot to commit this last week.

summit copy: added support for use_compress option in the datastore entry in the database. This should allow gpc1 and isp data to be copied using the same code.

dbconfig: database changes to support the above.

Location:
trunk/dbconfig
Files:
3 edited

Legend:

Unmodified
Added
Removed
  • trunk/dbconfig/changes.txt

    r26297 r26378  
    14661466) ENGINE=innodb DEFAULT CHARSET=latin1;
    14671467
     1468-- Version 1.1.60
     1469
     1470ALTER TABLE dqstatsRun ADD COLUMN label VARCHAR(64) AFTER registered;
     1471ALTER TABLE dqstatsRun ADD KEY(label);
     1472
     1473ALTER TABLE dqstatsRun ADD COLUMN fault SMALLINT NOT NULL AFTER label;
     1474ALTER TABLE dqstatsRun ADD KEY(fault);
     1475
     1476-- Version 1.1.61
     1477
     1478ALTER TABLE pzDataStore ADD COLUMN use_compress SMALLINT NOT NULL AFTER epoch;
     1479
     1480UPDATE dbversion set schema_version = '1.1.61',  updated= CURRENT_TIMESTAMP();
  • trunk/dbconfig/dqstats.md

    r26297 r26378  
    33    state          STR          64
    44    registered     TAI          NULL
     5    label          STR          64    # Key
     6    fault          S16          0     # Key NOT NULL
    57END
    68
  • trunk/dbconfig/summitcopy.md

    r25418 r26378  
    44    uri         STR         255
    55    epoch       UTC         0001-01-01T00:00:00Z
     6    use_compress S16        0
    67END
    78
Note: See TracChangeset for help on using the changeset viewer.