From e6c29cf43a886b12e28472778f40e91bf5ec401d Mon Sep 17 00:00:00 2001 From: Rodolphe Quiedeville Date: Fri, 15 Dec 2006 11:14:45 +0000 Subject: [PATCH] Bugfix Syntax Error :-( --- mysql/migration/2.0.0-2.1.0.sql | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/mysql/migration/2.0.0-2.1.0.sql b/mysql/migration/2.0.0-2.1.0.sql index 63b855875ed..c99ec32a336 100644 --- a/mysql/migration/2.0.0-2.1.0.sql +++ b/mysql/migration/2.0.0-2.1.0.sql @@ -475,7 +475,7 @@ 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 ADD COLUMN price_base_type varchar(3) DEFAULT ('HT') AFTER price; +ALTER TABLE llx_product ADD COLUMN price_base_type varchar(3) DEFAULT 'HT' AFTER price; ALTER TABLE llx_product ADD COLUMN price_ttc float(12,4) DEFAULT 0 AFTER price_base_type; alter table llx_product_det modify label varchar(255) NOT NULL; alter table llx_product_det modify description text;