aboutsummaryrefslogtreecommitdiffstats
path: root/install
diff options
context:
space:
mode:
authorgweltas <gweltas@piwigo.org>2004-11-24 10:49:41 +0000
committergweltas <gweltas@piwigo.org>2004-11-24 10:49:41 +0000
commitbd718576914a6ebe8c2a8dd00b36441b946b4335 (patch)
treece38b4e7b7933e115a4558fd4987096eb5ebeb2a /install
parentf0fcd1eedc26c0d36b6b0556b9f53124ba9f889f (diff)
Drop of PRIMARY Key on history table.
git-svn-id: http://piwigo.org/svn/trunk@615 68402e56-0260-453c-a942-63ccdbb3a9ee
Diffstat (limited to 'install')
-rw-r--r--install/phpwebgallery_structure.sql2
1 files changed, 1 insertions, 1 deletions
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;
--