From 27838c6f027eed4f60a55a745a73c55975c7506f Mon Sep 17 00:00:00 2001 From: "Paul S. Owen" Date: Sat, 17 Aug 2002 23:23:20 +0000 Subject: [PATCH] updated schema for update_script changes ... git-svn-id: file:///svn/phpbb/trunk@2874 89ea8834-ac86-4346-8a33-228a782c2dd0 --- phpBB/install/schemas/mysql_schema.sql | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/phpBB/install/schemas/mysql_schema.sql b/phpBB/install/schemas/mysql_schema.sql index 337e8d5d24..446923550f 100644 --- a/phpBB/install/schemas/mysql_schema.sql +++ b/phpBB/install/schemas/mysql_schema.sql @@ -40,7 +40,8 @@ CREATE TABLE phpbb_auth_groups ( CREATE TABLE phpbb_auth_options ( auth_option_id tinyint(4) NOT NULL auto_increment, auth_value char(20) NOT NULL, - PRIMARY KEY (auth_value, auth_option_id) + PRIMARY KEY (auth_option_id), + KEY auth_value (auth_value) );