diff --git a/mysql/migration/2.0.0-2.1.0.sql b/mysql/migration/2.0.0-2.1.0.sql index c1df8bcd85e..81ebad1b369 100644 --- a/mysql/migration/2.0.0-2.1.0.sql +++ b/mysql/migration/2.0.0-2.1.0.sql @@ -427,4 +427,12 @@ ALTER TABLE llx_categorie_product ADD PRIMARY KEY (fk_categorie, fk_product); alter table llx_product modify label varchar(255) NOT NULL; alter table llx_product modify description text; alter table llx_product_det modify label varchar(255) NOT NULL; -alter table llx_product_det modify description text; \ No newline at end of file +alter table llx_product_det modify description text; + +create table llx_accountingdebcred +( + fk_transaction integer NOT NULL, + fk_account integer NOT NULL, + amount real NOT NULL, + direction varchar(1) NOT NULL +)type=innodb; \ No newline at end of file