Changes between Initial Version and Version 3 of Ticket #20


Ignore:
Timestamp:
Feb 5, 2010 12:13:35 PM (15 years ago)
Author:
cedric
Comment:

Legend:

Unmodified
Added
Removed
Modified
  • Ticket #20

    • Property Status changed from new to accepted
  • Ticket #20 – Description

    initial v3  
     1script sql 
     2{{{ 
     3create schema csp; 
     4drop  table if exists csp.codier 
     5create table csp.codier ("cd_id" integer, 
     6                        "cd_fc_id" integer, 
     7                        "cd_code" varchar(10), 
     8                        "cd_libc" varchar(10), 
     9                        "cd_libl" varchar(10), 
     10                        "cd_chaine1" integer, 
     11                        "cd_chaine2" varchar(10), 
     12                        "cd_num1" integer, 
     13                        "cd_num2" integer, 
     14                        "cd_date1" timestamp, 
     15                        "cd_date2" timestamp, 
     16                        "cd_dt_cre"timestamp, 
     17                        "cd_dt_maj" timestamp, 
     18                        "cd_qi_maj" varchar(20), 
     19                        CONSTRAINT c_pk_cd_id PRIMARY KEY (cd_id) 
     20                        ); 
     21}}}