aboutsummaryrefslogtreecommitdiffstats
path: root/phpBB/install/database_update.php
diff options
context:
space:
mode:
authorAndreas Fischer <bantu@phpbb.com>2009-09-04 15:44:10 +0000
committerAndreas Fischer <bantu@phpbb.com>2009-09-04 15:44:10 +0000
commit0fe74ebceac75c559b8779f291ebb2df80309e92 (patch)
tree87de48e60d2d0accbf40be029e0afd1f257a2c06 /phpBB/install/database_update.php
parent31856352be0f29fd7423cfe87bdfd791b03fb938 (diff)
downloadforums-0fe74ebceac75c559b8779f291ebb2df80309e92.tar
forums-0fe74ebceac75c559b8779f291ebb2df80309e92.tar.gz
forums-0fe74ebceac75c559b8779f291ebb2df80309e92.tar.bz2
forums-0fe74ebceac75c559b8779f291ebb2df80309e92.tar.xz
forums-0fe74ebceac75c559b8779f291ebb2df80309e92.zip
Add INDEX on user_regdate because this is the default ORDER BY in memberlist.php - thanks nickvergessen.
git-svn-id: file:///svn/phpbb/branches/phpBB-3_0_0@10106 89ea8834-ac86-4346-8a33-228a782c2dd0
Diffstat (limited to 'phpBB/install/database_update.php')
-rw-r--r--phpBB/install/database_update.php3
1 files changed, 3 insertions, 0 deletions
diff --git a/phpBB/install/database_update.php b/phpBB/install/database_update.php
index ab22c803ee..54586c5650 100644
--- a/phpBB/install/database_update.php
+++ b/phpBB/install/database_update.php
@@ -877,6 +877,9 @@ function database_update_info()
POSTS_TABLE => array(
'post_username' => array('post_username'),
),
+ USERS_TABLE => array(
+ 'user_regdate' => array('user_regdate'),
+ ),
),
),
);