From 327fe3eabf93b0363b35a24d520a950a48d0b45d Mon Sep 17 00:00:00 2001 From: saxmatt Date: Mon, 4 Oct 2004 08:19:12 +0000 Subject: [PATCH] I like the INT better but we can't keep it if it with the current DB upgrade system. git-svn-id: http://svn.automattic.com/wordpress/trunk@1735 1a063a9b-81f0-0310-95a4-ce76da25c4cd --- wp-admin/upgrade-schema.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/wp-admin/upgrade-schema.php b/wp-admin/upgrade-schema.php index 2b4534e2d..06891a6a0 100644 --- a/wp-admin/upgrade-schema.php +++ b/wp-admin/upgrade-schema.php @@ -22,7 +22,7 @@ CREATE TABLE $wpdb->comments ( comment_date_gmt datetime NOT NULL default '0000-00-00 00:00:00', comment_content text NOT NULL, comment_karma int(11) NOT NULL default '0', - comment_approved tinyint(1) NOT NULL default '1', + comment_approved enum('0','1') NOT NULL default '1', comment_agent varchar(255) NOT NULL default '', comment_type varchar(20) NOT NULL default '', comment_parent int(11) NOT NULL default '0',