diff options
author | vdigital <vdigital@piwigo.org> | 2007-01-21 15:49:45 +0000 |
---|---|---|
committer | vdigital <vdigital@piwigo.org> | 2007-01-21 15:49:45 +0000 |
commit | eb0315c74d6ec2495bf591623b1f97e2929d888e (patch) | |
tree | 0b552438cc0e67cf78947b7534b2e34cd48ee94f /install/phpwebgallery_structure.sql | |
parent | 4938b8b2a430695f9427d798e5df3b85ceddb4b5 (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 'install/phpwebgallery_structure.sql')
-rw-r--r-- | install/phpwebgallery_structure.sql | 1 |
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; |