diff --git a/mysql/migration/1.1.0-2.0.0.sql b/mysql/migration/1.1.0-2.0.0.sql index 519c63aab8d..52b063785ee 100644 --- a/mysql/migration/1.1.0-2.0.0.sql +++ b/mysql/migration/1.1.0-2.0.0.sql @@ -5,6 +5,28 @@ -- sans AUCUNE erreur ni warning -- ; + +create table llx_categorie +( + rowid integer AUTO_INCREMENT PRIMARY KEY, + label VARCHAR(255), + description text +)type=innodb; + + +create table llx_product_fournisseur_price +( + rowid integer AUTO_INCREMENT PRIMARY KEY, + datec datetime, + tms timestamp, + fk_product integer, + fk_soc integer, + price real, + quantity real, + fk_user integer + +)type=innodb; + create table llx_product_fournisseur_price_log ( rowid integer AUTO_INCREMENT PRIMARY KEY, @@ -17,6 +39,7 @@ create table llx_product_fournisseur_price_log )type=innodb; + create table llx_usergroup ( rowid integer AUTO_INCREMENT PRIMARY KEY,