From 3db19d2c5310b6ea2c20fae0d600104cb768ad32 Mon Sep 17 00:00:00 2001 From: tDidierjean Date: Thu, 3 May 2012 15:54:58 +0000 Subject: [PATCH] // Installer: remove id_product_attribute from product_download --- install-dev/data/db_structure.sql | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/install-dev/data/db_structure.sql b/install-dev/data/db_structure.sql index 4a3e2b5cb..774454477 100644 --- a/install-dev/data/db_structure.sql +++ b/install-dev/data/db_structure.sql @@ -1472,7 +1472,6 @@ CREATE TABLE `PREFIX_product_attribute_image` ( CREATE TABLE `PREFIX_product_download` ( `id_product_download` int(10) unsigned NOT NULL AUTO_INCREMENT, `id_product` int(10) unsigned NOT NULL, - `id_product_attribute` int(10) unsigned NOT NULL, `display_filename` varchar(255) DEFAULT NULL, `filename` varchar(255) DEFAULT NULL, `date_add` datetime NOT NULL, @@ -1482,8 +1481,7 @@ CREATE TABLE `PREFIX_product_download` ( `active` tinyint(1) unsigned NOT NULL DEFAULT '1', `is_shareable` tinyint(1) unsigned NOT NULL DEFAULT '0', PRIMARY KEY (`id_product_download`), - KEY `product_active` (`id_product`,`active`), - KEY `id_product_attribute` (`id_product_attribute`) + KEY `product_active` (`id_product`,`active`) ) ENGINE=ENGINE_TYPE DEFAULT CHARSET=utf8; CREATE TABLE `PREFIX_product_lang` (