From fb4a3f7ff2c9999774e644fdc9cd4591429d2933 Mon Sep 17 00:00:00 2001 From: Laurent Destailleur Date: Sun, 9 Jan 2005 00:57:33 +0000 Subject: [PATCH] =?UTF-8?q?Fix:=20La=20table=20des=20mouvements=20de=20sto?= =?UTF-8?q?ck=20n'=E9tait=20pas=20dans=20le=20script=20de=20migration?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- mysql/migration/1.1.0-1.2.0-RC1.sql | 14 ++++++++++++++ 1 file changed, 14 insertions(+) diff --git a/mysql/migration/1.1.0-1.2.0-RC1.sql b/mysql/migration/1.1.0-1.2.0-RC1.sql index 645af0e192e..d60077911ba 100644 --- a/mysql/migration/1.1.0-1.2.0-RC1.sql +++ b/mysql/migration/1.1.0-1.2.0-RC1.sql @@ -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 (