Ajout création de la table llx_accountingdebcred dans le fichier de migration
This commit is contained in:
parent
d5869583a5
commit
5df79a21e6
@ -428,3 +428,11 @@ alter table llx_product modify label varchar(255) NOT NULL;
|
|||||||
alter table llx_product modify description text;
|
alter table llx_product modify description text;
|
||||||
alter table llx_product_det modify label varchar(255) NOT NULL;
|
alter table llx_product_det modify label varchar(255) NOT NULL;
|
||||||
alter table llx_product_det modify description text;
|
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;
|
||||||
Loading…
Reference in New Issue
Block a user