--- drupal/database/updates.inc	2004-05-13 23:33:55.000000000 +0200
+++ contributions/sandbox/pablobm/databases/updates.inc	2004-05-14 22:52:00.588228216 +0200
@@ -1,5 +1,5 @@
 <?php
-/* $Id: updates.inc,v 1.14 2004/05/13 18:19:29 dries Exp $ */
+/* $Id: updates.inc,v 1.13 2004/05/10 20:34:24 dries Exp $ */
 
 // Define the various updates in an array("date : comment" => "function");
 $sql_updates = array(
@@ -57,7 +57,8 @@
   "2004-04-15" => "update_83",
   "2004-04-21" => "update_84",
   "2004-04-27" => "update_85",
-  "2004-05-10" => "update_86"
+  "2004-05-10" => "update_86",
+  "2004-05-13" => "update_87"
 );
 
 function update_32() {
@@ -1084,6 +1085,14 @@
   return $ret;
 }
 
+function update_87() {
+  $ret = array();
+  $ret[] = update_sql("ALTER TABLE {comments} ADD name varchar(60)");
+  $ret[] = update_sql("ALTER TABLE {comments} ADD email varchar(64)");
+  $ret[] = update_sql("ALTER TABLE {comments} ADD homepage varchar(255)");
+  return $ret;
+}
+
 function update_sql($sql) {
   $edit = $_POST["edit"];
   $result = db_query($sql);
