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