Ajout cration de la table llx_accountingdebcred dans le fichier de migration

This commit is contained in:
Regis Houssin 2006-09-11 10:13:58 +00:00
parent d5869583a5
commit 5df79a21e6

View File

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