Switch post_content_filtered from text to longtext so that it matches post_content. Props ejdanderson. fixes #19387
git-svn-id: http://svn.automattic.com/wordpress/trunk@19863 1a063a9b-81f0-0310-95a4-ce76da25c4cd
This commit is contained in:
parent
81bb2f7ed7
commit
a575cd242e
|
@ -159,7 +159,7 @@ CREATE TABLE $wpdb->posts (
|
||||||
pinged text NOT NULL,
|
pinged text NOT NULL,
|
||||||
post_modified datetime NOT NULL default '0000-00-00 00:00:00',
|
post_modified datetime NOT NULL default '0000-00-00 00:00:00',
|
||||||
post_modified_gmt datetime NOT NULL default '0000-00-00 00:00:00',
|
post_modified_gmt datetime NOT NULL default '0000-00-00 00:00:00',
|
||||||
post_content_filtered text NOT NULL,
|
post_content_filtered longtext NOT NULL,
|
||||||
post_parent bigint(20) unsigned NOT NULL default '0',
|
post_parent bigint(20) unsigned NOT NULL default '0',
|
||||||
guid varchar(255) NOT NULL default '',
|
guid varchar(255) NOT NULL default '',
|
||||||
menu_order int(11) NOT NULL default '0',
|
menu_order int(11) NOT NULL default '0',
|
||||||
|
|
|
@ -11,7 +11,7 @@ $wp_version = '3.4-alpha-19861';
|
||||||
*
|
*
|
||||||
* @global int $wp_db_version
|
* @global int $wp_db_version
|
||||||
*/
|
*/
|
||||||
$wp_db_version = 19799;
|
$wp_db_version = 19863;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Holds the TinyMCE version
|
* Holds the TinyMCE version
|
||||||
|
|
Loading…
Reference in New Issue