Ajout table ape

This commit is contained in:
Rodolphe Quiedeville 2004-02-18 11:24:29 +00:00
parent 8c69e9d881
commit 4157c95204

View File

@ -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;