Index: head2head.module
===================================================================
RCS file: /cvs/drupal-contrib/contributions/modules/head2head/head2head.module,v
retrieving revision 1.17
retrieving revision 1.18
diff -u -r1.17 -r1.18
--- head2head.module	7 Jun 2010 15:43:38 -0000	1.17
+++ head2head.module	14 Jun 2010 09:07:02 -0000	1.18
@@ -1,5 +1,5 @@
 <?php
-// $Id: head2head.module,v 1.17 2010/06/07 15:43:38 catch Exp $
+// $Id: head2head.module,v 1.18 2010/06/14 09:07:02 JacobSingh Exp $
 
 /**
  * @file
@@ -194,3 +194,18 @@
     db_drop_field('node_type', 'body_label');
   }
 }
+
+/**
+ * Add user_signature field.
+ */
+function head2head_824932() {
+  $new_sig_field = array(
+    'type' => 'int',
+    'size' => 'small',
+    'not null' => TRUE,
+    'default' => 0,
+    'description' => 'The {filter_format}.format of the signature.',
+  );
+  
+  db_add_field('users', 'signature_format', $new_sig_field);
+}
\ No newline at end of file
Index: alpha2alpha/alpha2alpha.install
===================================================================
RCS file: /cvs/drupal-contrib/contributions/modules/head2head/alpha2alpha/alpha2alpha.install,v
retrieving revision 1.6
retrieving revision 1.7
diff -u -r1.6 -r1.7
--- alpha2alpha/alpha2alpha.install	7 Jun 2010 03:10:25 -0000	1.6
+++ alpha2alpha/alpha2alpha.install	14 Jun 2010 09:07:02 -0000	1.7
@@ -1,5 +1,5 @@
 <?php
-// $Id: alpha2alpha.install,v 1.6 2010/06/07 03:10:25 johnalbin Exp $
+// $Id: alpha2alpha.install,v 1.7 2010/06/14 09:07:02 JacobSingh Exp $
 
 /**
  * @file
@@ -145,6 +145,13 @@
 }
 
 /**
+ * Adds user signature field.
+ */
+function alpha2alpha_update_7601() {
+  alpha2alpha_update_helper('824932', 6);
+}
+
+/**
  * @} End of "defgroup updates-alpha-5-to-6"
  * The next series of updates should start at 7700.
  */
