From 0e365db45d77c6b0258fd4f2c72a011d47260959 Mon Sep 17 00:00:00 2001 From: Matt Mullenweg Date: Sun, 5 Sep 2004 01:43:40 +0000 Subject: [PATCH] Two new fields. git-svn-id: https://develop.svn.wordpress.org/trunk@1602 602fd350-edb4-49c9-b593-d223f7449a82 --- wp-admin/upgrade-schema.php | 2 ++ 1 file changed, 2 insertions(+) diff --git a/wp-admin/upgrade-schema.php b/wp-admin/upgrade-schema.php index d39af9b9bc..4f2813c9d9 100644 --- a/wp-admin/upgrade-schema.php +++ b/wp-admin/upgrade-schema.php @@ -23,6 +23,7 @@ CREATE TABLE $wpdb->comments ( comment_content text NOT NULL, comment_karma int(11) NOT NULL default '0', comment_approved enum('0','1') NOT NULL default '1', + comment_agent varchar(255) NOT NULL default '', user_id int(11) NOT NULL default '0', PRIMARY KEY (comment_ID), KEY comment_approved (comment_approved), @@ -115,6 +116,7 @@ CREATE TABLE $wpdb->posts ( post_modified_gmt datetime NOT NULL default '0000-00-00 00:00:00', post_content_filtered text NOT NULL, post_parent int(11) NOT NULL default '0', + guid varchar(255) NOT NULL default '', PRIMARY KEY (ID), KEY post_date_gmt (post_date_gmt), KEY post_name (post_name),