From 4157c95204a0297bd0c7923816f56fb6a9f3441d Mon Sep 17 00:00:00 2001 From: Rodolphe Quiedeville Date: Wed, 18 Feb 2004 11:24:29 +0000 Subject: [PATCH] Ajout table ape --- mysql/migration/1.1.0-1.2.0-RC1.sql | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/mysql/migration/1.1.0-1.2.0-RC1.sql b/mysql/migration/1.1.0-1.2.0-RC1.sql index 5b3906b1a9b..6b5644c538b 100644 --- a/mysql/migration/1.1.0-1.2.0-RC1.sql +++ b/mysql/migration/1.1.0-1.2.0-RC1.sql @@ -453,3 +453,11 @@ values (03,'973','97302',3,'GUYANE','Guyane'); insert into llx_c_departements (fk_region, code_departement,cheflieu,tncc,ncc,nom) values (04,'974','97411',3,'REUNION','Réunion'); +create table llx_c_ape +( + rowid integer AUTO_INCREMENT UNIQUE, + code_ape varchar(5) PRIMARY KEY, + libelle varchar(255), + active tinyint default 1 +)type=innodb; +