Skip to content
Snippets Groups Projects
Commit fb4a3f7f authored by Laurent Destailleur's avatar Laurent Destailleur
Browse files

Fix: La table des mouvements de stock n'était pas dans le script de migration

parent f3646dce
No related branches found
No related tags found
No related merge requests found
......@@ -103,6 +103,20 @@ alter table llx_c_actioncomm add active tinyint default 1 NOT NULL after libelle
alter table llx_c_paiement add code varchar(6) after id;
create table llx_stock_mouvement
(
rowid integer AUTO_INCREMENT PRIMARY KEY,
tms timestamp,
datem datetime,
fk_product integer NOT NULL,
fk_entrepot integer NOT NULL,
value integer,
type_mouvement smallint,
fk_user_author integer,
key(fk_product),
key(fk_entrepot)
)type=innodb;
create table llx_birthday_alert
(
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment