Changes between Version 30 and Version 31 of Cookbook CCM21_France


Ignore:
Timestamp:
Jul 27, 2010 3:30:01 PM (15 years ago)
Author:
cedric
Comment:

--

Legend:

Unmodified
Added
Removed
Modified
  • Cookbook CCM21_France

    v30 v31  
    120120CREATE TABLE  ccm21.catchments_france AS 
    121121SELECT * FROM ccm21.catchments 
    122 WHERE wso_id IN (SELECT wso_id FROM france.wso WHERE area='france');  
     122WHERE wso_id IN (SELECT wso_id FROM france.wso WHERE area='France');  
    123123                
    124124ALTER TABLE ccm21.catchments_france ADD CONSTRAINT c_pk_gid_catchments_france PRIMARY KEY  (gid); 
     
    132132CREATE INDEX index_catchments_france ON ccm21.catchments_france 
    133133  USING GIST ( the_geom GIST_GEOMETRY_OPS );  
     134 
    134135CREATE INDEX indexcatchmentsfrance_wso1_id 
    135   ON ccm21.catchments 
     136  ON ccm21.catchments_france 
    136137  USING btree 
    137138  (wso1_id); 
     139 
    138140}}}