From 576ef9e541d72fc798680dd75f017af86ef1aa2e Mon Sep 17 00:00:00 2001 From: gauthier Date: Wed, 21 Sep 2016 09:31:40 +0200 Subject: [PATCH] FIX : sql syntax for travis test --- htdocs/install/mysql/migration/4.0.0-5.0.0.sql | 4 ++-- htdocs/install/mysql/tables/llx_product_stock_entrepot.sql | 4 ++-- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/htdocs/install/mysql/migration/4.0.0-5.0.0.sql b/htdocs/install/mysql/migration/4.0.0-5.0.0.sql index 3c1928f3766..cbbf6676352 100644 --- a/htdocs/install/mysql/migration/4.0.0-5.0.0.sql +++ b/htdocs/install/mysql/migration/4.0.0-5.0.0.sql @@ -103,7 +103,7 @@ create table llx_product_stock_entrepot tms timestamp, fk_product integer NOT NULL, fk_entrepot integer NOT NULL, - seuil_stock_alerte int(11) DEFAULT '0', - desiredstock int(11) DEFAULT '0', + seuil_stock_alerte integer DEFAULT '0', + desiredstock integer DEFAULT '0', import_key varchar(14) -- Import key )ENGINE=innodb; diff --git a/htdocs/install/mysql/tables/llx_product_stock_entrepot.sql b/htdocs/install/mysql/tables/llx_product_stock_entrepot.sql index b0fcedc8ab6..ced4a2e8abb 100644 --- a/htdocs/install/mysql/tables/llx_product_stock_entrepot.sql +++ b/htdocs/install/mysql/tables/llx_product_stock_entrepot.sql @@ -24,8 +24,8 @@ create table llx_product_stock_entrepot tms timestamp, fk_product integer NOT NULL, fk_entrepot integer NOT NULL, - seuil_stock_alerte int(11) DEFAULT '0', - desiredstock int(11) DEFAULT '0', + seuil_stock_alerte integer DEFAULT '0', + desiredstock integer DEFAULT '0', import_key varchar(14) -- Import key )ENGINE=innodb;