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:
saxmatt 2004-05-19 11:28:23 +00:00
parent 9cfcc55226
commit c05aa0053c
1 changed files with 2 additions and 0 deletions

View File

@ -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");
}
?>