From 5effee481241e39c02acdf52ff0b24510bcaec09 Mon Sep 17 00:00:00 2001 From: jgen Date: Sat, 22 Feb 2014 22:13:26 -0500 Subject: [PATCH] Remove these indexes as we are creating them manually. --- install.php | 2 -- 1 file changed, 2 deletions(-) diff --git a/install.php b/install.php index 277a4258..01fcd1e4 100644 --- a/install.php +++ b/install.php @@ -328,8 +328,6 @@ EOD; $db->create_table("image_tags", " image_id INTEGER NOT NULL, tag_id INTEGER NOT NULL, - INDEX(image_id), - INDEX(tag_id), UNIQUE(image_id, tag_id), FOREIGN KEY (image_id) REFERENCES images(id) ON DELETE CASCADE, FOREIGN KEY (tag_id) REFERENCES tags(id) ON DELETE CASCADE