mirror of
https://github.com/WordPress/WordPress.git
synced 2025-01-22 00:01:27 +01:00
Add user_nicename key to users table. fixes #4937
git-svn-id: http://svn.automattic.com/wordpress/trunk@6075 1a063a9b-81f0-0310-95a4-ce76da25c4cd
This commit is contained in:
parent
368b18d383
commit
c8077169aa
@ -132,7 +132,8 @@ CREATE TABLE $wpdb->users (
|
|||||||
user_status int(11) NOT NULL default '0',
|
user_status int(11) NOT NULL default '0',
|
||||||
display_name varchar(250) NOT NULL default '',
|
display_name varchar(250) NOT NULL default '',
|
||||||
PRIMARY KEY (ID),
|
PRIMARY KEY (ID),
|
||||||
KEY user_login_key (user_login)
|
KEY user_login_key (user_login),
|
||||||
|
KEY user_nicename (user_nicename)
|
||||||
) $charset_collate;
|
) $charset_collate;
|
||||||
CREATE TABLE $wpdb->usermeta (
|
CREATE TABLE $wpdb->usermeta (
|
||||||
umeta_id bigint(20) NOT NULL auto_increment,
|
umeta_id bigint(20) NOT NULL auto_increment,
|
||||||
|
@ -3,6 +3,6 @@
|
|||||||
// This holds the version number in a separate file so we can bump it without cluttering the SVN
|
// This holds the version number in a separate file so we can bump it without cluttering the SVN
|
||||||
|
|
||||||
$wp_version = '2.3-beta3';
|
$wp_version = '2.3-beta3';
|
||||||
$wp_db_version = 6039;
|
$wp_db_version = 6075;
|
||||||
|
|
||||||
?>
|
?>
|
||||||
|
Loading…
Reference in New Issue
Block a user