mirror of
https://github.com/WordPress/WordPress.git
synced 2024-12-23 01:27:36 +01:00
Fix duplicate index error. Props ryanscheuermann. fixes #2695
git-svn-id: http://svn.automattic.com/wordpress/trunk@4076 1a063a9b-81f0-0310-95a4-ce76da25c4cd
This commit is contained in:
parent
a9ca0da268
commit
033c07e86b
@ -118,7 +118,7 @@ CREATE TABLE $wpdb->posts (
|
||||
comment_count bigint(20) NOT NULL default '0',
|
||||
PRIMARY KEY (ID),
|
||||
KEY post_name (post_name),
|
||||
KEY type_status_date (post_type, post_status, post_date, ID)
|
||||
KEY type_status_date (post_type,post_status,post_date,ID)
|
||||
);
|
||||
CREATE TABLE $wpdb->users (
|
||||
ID bigint(20) unsigned NOT NULL auto_increment,
|
||||
|
Loading…
Reference in New Issue
Block a user