Remove blog_id column from wp_options. Props scribu. fixes #17188
git-svn-id: http://svn.automattic.com/wordpress/trunk@19793 1a063a9b-81f0-0310-95a4-ce76da25c4cd
This commit is contained in:
parent
5fce3217ad
commit
36d2989fed
|
@ -128,7 +128,6 @@ CREATE TABLE $wpdb->links (
|
||||||
) $charset_collate;
|
) $charset_collate;
|
||||||
CREATE TABLE $wpdb->options (
|
CREATE TABLE $wpdb->options (
|
||||||
option_id bigint(20) unsigned NOT NULL auto_increment,
|
option_id bigint(20) unsigned NOT NULL auto_increment,
|
||||||
blog_id int(11) NOT NULL default '0',
|
|
||||||
option_name varchar(64) NOT NULL default '',
|
option_name varchar(64) NOT NULL default '',
|
||||||
option_value longtext NOT NULL,
|
option_value longtext NOT NULL,
|
||||||
autoload varchar(20) NOT NULL default 'yes',
|
autoload varchar(20) NOT NULL default 'yes',
|
||||||
|
|
|
@ -11,7 +11,7 @@ $wp_version = '3.4-alpha-19719';
|
||||||
*
|
*
|
||||||
* @global int $wp_db_version
|
* @global int $wp_db_version
|
||||||
*/
|
*/
|
||||||
$wp_db_version = 19784;
|
$wp_db_version = 19793;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Holds the TinyMCE version
|
* Holds the TinyMCE version
|
||||||
|
|
Loading…
Reference in New Issue