Subversion Repositories Applications.referentiel

Rev

Rev 18 | Rev 30 | Go to most recent revision | Show entire file | Ignore whitespace | Details | Blame | Last modification | View Log | RSS feed

Rev 18 Rev 23
Line 9... Line 9...
9
 
9
 
10
 
10
 
-
 
11
 
11
 
12
CREATE TABLE ref_traitement (
12
CREATE TABLE ref_traitement (
13
  id_traitement INTEGER UNSIGNED  NOT NULL   AUTO_INCREMENT,
13
  id_traitement INTEGER UNSIGNED  NOT NULL   AUTO_INCREMENT,
14
  referentiel_code VARCHAR(50)  NULL  ,
14
  nom VARCHAR(100)  NULL  ,
15
  nom VARCHAR(100)  NULL  ,
15
  date_debut DATETIME  NULL  ,
16
  date_debut DATETIME  NULL  ,
Line -... Line 17...
-
 
17
  date_fin DATETIME  NULL  ,
-
 
18
  meta_date_creation DATETIME  NULL    ,
-
 
19
PRIMARY KEY(id_traitement));
-
 
20
 
-
 
21
 
-
 
22
 
16
  date_fin DATETIME  NULL  ,
23
 
17
  meta_date_creation DATETIME  NULL    ,
24
 
18
PRIMARY KEY(id_traitement));
25
 
19
 
26
 
20
 
27