From b4c974db8269a0bd2a63328050c638dcff952006 Mon Sep 17 00:00:00 2001 From: vChabot Date: Tue, 14 Feb 2012 13:14:07 +0000 Subject: [PATCH] [-] BO : BugFix : #PSTEST-750 : upgrade sql updated (position field added to the category_shop table) --- install-dev/upgrade/sql/1.5.0.4.sql | 1 + 1 file changed, 1 insertion(+) diff --git a/install-dev/upgrade/sql/1.5.0.4.sql b/install-dev/upgrade/sql/1.5.0.4.sql index d7eccc813..493a8d382 100644 --- a/install-dev/upgrade/sql/1.5.0.4.sql +++ b/install-dev/upgrade/sql/1.5.0.4.sql @@ -23,6 +23,7 @@ WHERE `name` = "order fenced" AND id_lang = 2; CREATE TABLE `PREFIX_category_shop` ( `id_category` int(11) NOT NULL, `id_shop` int(11) NOT NULL, + `position` int(10) unsigned NOT NULL default '0', PRIMARY KEY (`id_category`, `id_shop`), UNIQUE KEY `id_category_shop` (`id_category`,`id_shop`) ) ENGINE=ENGINE_TYPE DEFAULT CHARSET=utf8;