From c2b5fca8b60c48b7843b58155a83545200128f8a Mon Sep 17 00:00:00 2001 From: Laurent Destailleur Date: Tue, 31 Aug 2010 22:25:09 +0000 Subject: [PATCH] Fix: Syntax error --- htdocs/install/mysql/migration/2.8.0-2.9.0.sql | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/htdocs/install/mysql/migration/2.8.0-2.9.0.sql b/htdocs/install/mysql/migration/2.8.0-2.9.0.sql index aae9a2e86b4..147b631e7a4 100755 --- a/htdocs/install/mysql/migration/2.8.0-2.9.0.sql +++ b/htdocs/install/mysql/migration/2.8.0-2.9.0.sql @@ -15,8 +15,8 @@ ALTER TABLE llx_product_stock drop column location; create table llx_product_association ( rowid integer AUTO_INCREMENT PRIMARY KEY, - fk_product_pere integer NOT NULL DEFAULT 0, -- id du produit maitre - fk_product_fils integer NOT NULL DEFAULT 0, -- id du sous-produit + fk_product_pere integer NOT NULL DEFAULT 0, + fk_product_fils integer NOT NULL DEFAULT 0, qty double NULL )type=innodb;