Changes between Version 14 and Version 15 of model building


Ignore:
Timestamp:
May 21, 2010 4:23:30 PM (15 years ago)
Author:
cedric
Comment:

--

Legend:

Unmodified
Added
Removed
Modified
  • model building

    v14 v15  
    3636}}}  
    3737 * The idea __here__ is to have some variables describing the variation in ''' recruitment ''' 
    38  * The sea_cd => this one is obvious, and will describe varying recruitments into the Baltic, the Mediterranean, North sea 
    39    
    40 [[Image(source:data/Docs/trac/CCM21/seaoutlets_sea_cd.jpg)]] 
     38 * The sea_cd => this one is obvious, and will describe varying recruitments into the Baltic, the Mediterranean, North sea, unfortunately sea_cd is repeated and probably needs grouping with other variable  
     39 [[Image(source:data/Docs/trac/CCM21/seaoutlets_sea_cd.jpg)]] [[BR]] 
     40This will create a new column in ccm21.seoutlets 
     41{{{ 
     42#!sql 
     43ALTER TABLE ccm21.seaoutlets ADD COLUMN area_cd character varying(3); 
     44UPDATE ccm21.seaoutlets set area_cd= system_cd||sea_cd; 
     45}}}