From bd718576914a6ebe8c2a8dd00b36441b946b4335 Mon Sep 17 00:00:00 2001 From: gweltas Date: Wed, 24 Nov 2004 10:49:41 +0000 Subject: [PATCH] Drop of PRIMARY Key on history table. git-svn-id: http://piwigo.org/svn/trunk@615 68402e56-0260-453c-a942-63ccdbb3a9ee --- install/phpwebgallery_structure.sql | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/install/phpwebgallery_structure.sql b/install/phpwebgallery_structure.sql index f3f6cf863..71916e34c 100644 --- a/install/phpwebgallery_structure.sql +++ b/install/phpwebgallery_structure.sql @@ -102,7 +102,7 @@ CREATE TABLE phpwebgallery_history ( category varchar(150) default NULL, file varchar(50) default NULL, picture varchar(150) default NULL, - PRIMARY KEY (date) + KEY (date) ) TYPE=MyISAM; --