Allow for longer URIs in comments.
git-svn-id: http://svn.automattic.com/wordpress/trunk@1320 1a063a9b-81f0-0310-95a4-ce76da25c4cd
This commit is contained in:
parent
9cfcc55226
commit
c05aa0053c
|
@ -831,6 +831,8 @@ function upgrade_110() {
|
|||
$wpdb->query("ALTER TABLE `$tableposts` CHANGE `post_status` `post_status` ENUM( 'publish', 'draft', 'private', 'static' ) DEFAULT 'publish' NOT NULL");
|
||||
maybe_add_column($tableposts, 'post_parent', "ALTER TABLE `$tableposts` ADD `post_parent` INT NOT NULL ;");
|
||||
|
||||
|
||||
$wpdb->query("ALTER TABLE `$tablecomments` CHANGE `comment_author_url` `comment_author_url` VARCHAR( 200 ) NOT NULL");
|
||||
}
|
||||
|
||||
?>
|
Loading…
Reference in New Issue