2003.09.21_01h00 : auto commit

git-svn-id: http://piwigo.org/svn/trunk@149 68402e56-0260-453c-a942-63ccdbb3a9ee
This commit is contained in:
z0rglub
2003-09-20 23:00:01 +00:00
parent 5b25b7bac3
commit 20ca7a90f0

View File

@@ -148,7 +148,8 @@ CREATE TABLE phpwebgallery_images (
height smallint(9) unsigned default NULL,
keywords varchar(255) default NULL,
storage_category_id smallint(5) unsigned default NULL,
PRIMARY KEY (id)
PRIMARY KEY (id),
KEY storage_category_id (storage_category_id)
) TYPE=MyISAM;
--
@@ -220,7 +221,7 @@ CREATE TABLE phpwebgallery_users (
long_period tinyint(3) unsigned NOT NULL default '14',
template varchar(255) NOT NULL default 'default',
PRIMARY KEY (id),
UNIQUE KEY pseudo (username)
UNIQUE KEY username (username)
) TYPE=MyISAM;
--