aboutsummaryrefslogtreecommitdiffstats
path: root/install/phpwebgallery_structure.sql
diff options
context:
space:
mode:
authorvdigital <vdigital@piwigo.org>2007-01-21 15:49:45 +0000
committervdigital <vdigital@piwigo.org>2007-01-21 15:49:45 +0000
commiteb0315c74d6ec2495bf591623b1f97e2929d888e (patch)
tree0b552438cc0e67cf78947b7534b2e34cd48ee94f /install/phpwebgallery_structure.sql
parent4938b8b2a430695f9427d798e5df3b85ceddb4b5 (diff)
Inefficient and non required index is removed on #_image_category.
git-svn-id: http://piwigo.org/svn/trunk@1739 68402e56-0260-453c-a942-63ccdbb3a9ee
Diffstat (limited to '')
-rw-r--r--install/phpwebgallery_structure.sql1
1 files changed, 0 insertions, 1 deletions
diff --git a/install/phpwebgallery_structure.sql b/install/phpwebgallery_structure.sql
index 1006bc156..ac57b6283 100644
--- a/install/phpwebgallery_structure.sql
+++ b/install/phpwebgallery_structure.sql
@@ -154,7 +154,6 @@ CREATE TABLE `phpwebgallery_image_category` (
`image_id` mediumint(8) unsigned NOT NULL default '0',
`category_id` smallint(5) unsigned NOT NULL default '0',
PRIMARY KEY (`image_id`,`category_id`),
- KEY `image_category_i1` (`image_id`),
KEY `image_category_i2` (`category_id`)
) TYPE=MyISAM;