From c05aa0053c524c74736a19ac8ed59f54f54b161d Mon Sep 17 00:00:00 2001 From: saxmatt Date: Wed, 19 May 2004 11:28:23 +0000 Subject: [PATCH] Allow for longer URIs in comments. git-svn-id: http://svn.automattic.com/wordpress/trunk@1320 1a063a9b-81f0-0310-95a4-ce76da25c4cd --- wp-admin/upgrade-functions.php | 2 ++ 1 file changed, 2 insertions(+) diff --git a/wp-admin/upgrade-functions.php b/wp-admin/upgrade-functions.php index 0b6408d45..380215ecf 100644 --- a/wp-admin/upgrade-functions.php +++ b/wp-admin/upgrade-functions.php @@ -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"); } ?> \ No newline at end of file