From 6800f9f67d68ee7144b117922dd71799fc39969b 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) git-svn-id: http://dev.prestashop.com/svn/v1/branches/1.5.x@13301 b9a71923-0436-4b27-9f14-aed3839534dd --- 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;