IPP Software Navigation Tools IPP Links Communication Pan-STARRS Links

Changeset 26191 for trunk/dbconfig


Ignore:
Timestamp:
Nov 19, 2009, 1:18:42 AM (17 years ago)
Author:
bills
Message:

use sql comments not #

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/dbconfig/changes.txt

    r26015 r26191  
    1616-- Version 1.1.22 --> 1.1.23
    1717-- Adding support for reduction classes (which are used to specify recipes for parts of the pipeline).
    18 # Adding 'reduction' to detRun
    19 # Renaming 'recipe' in {chip,cam}{Pending,Processed}Exp to 'reduction'
     18-- Adding 'reduction' to detRun
     19-- Renaming 'recipe' in {chip,cam}{Pending,Processed}Exp to 'reduction'
    2020
    2121alter table detRun add column reduction varchar(64) NULL DEFAULT NULL after exp_type;
     
    8282alter table stackSumSkyfile add column hostname varchar(64) after dtime_stack;
    8383
    84 #alter table warpSkyfile add column ( dtime_warp float, hostname varchar(64) );
     84-- alter table warpSkyfile add column ( dtime_warp float, hostname varchar(64) );
    8585alter table warpSkyfile add column dtime_warp float after bg_stdev;
    8686alter table warpSkyfile add column hostname varchar(64) after dtime_warp;
     
    14241424ALTER TABLE publishClient ADD COLUMN active TINYINT DEFAULT 0 AFTER client_id;
    14251425
    1426 # add outdir to allow spreading files over multiple hosts
     1426-- add outdir to allow spreading files over multiple hosts
    14271427ALTER TABLE distRun ADD COLUMN outdir VARCHAR(255) AFTER outroot;
    14281428ALTER TABLE distComponent ADD COLUMN outdir VARCHAR(255) AFTER state;
    14291429
    1430 # populate the existing runs (except for bills' test runs)
     1430-- populate the existing runs (except for bills' test runs)
    14311431UPDATE distRun SET outdir = CONCAT_WS('.', outroot, dist_id) WHERE outroot not like '%@HOST@%';
    14321432UPDATE distRun join distComponent using(dist_id) SET distComponent.outdir = CONCAT_WS('.', distRun.outroot, dist_id);
Note: See TracChangeset for help on using the changeset viewer.