? 958670_1_comment_notify_docs.patch
Index: comment_notify.install
===================================================================
RCS file: /cvs/drupal-contrib/contributions/modules/comment_notify/comment_notify.install,v
retrieving revision 1.21
diff -u -p -r1.21 comment_notify.install
--- comment_notify.install	8 Aug 2010 00:40:04 -0000	1.21
+++ comment_notify.install	1 Nov 2010 02:48:28 -0000
@@ -56,7 +56,7 @@ function comment_notify_schema() {
         'disp-width' => '11'),
       'notify' => array(
         'type' => 'int',
-        'description' => 'A boolean indicator for whether or not they subscribed: 1 means subscribed, 0 means not subscribed.',
+        'description' => 'A integer indicating the type of subscription: 0 means not subscribed, 1 means subscribed to all comments, and 2 means only subscribed to replies of this comment.',
         'size' => 'tiny',
         'not null' => TRUE,
         'disp-width' => '11'),
@@ -80,24 +80,24 @@ function comment_notify_schema() {
   );
   $schema['comment_notify_user_settings'] = array(
     'fields' => array(
-        'uid' => array(
-          'type' => 'int',
-          'unsigned' => TRUE,
-          'description' => 'The user id from {users}.cid',
-          'not null' => TRUE,
-          'disp-width' => '11'),
-        'node_notify' => array(
-          'type' => 'int',
-          'size' => 'tiny',
-          'not null' => TRUE,
-          'default' => 0,
-          'disp-width' => '11'),
-        'comment_notify' => array(
-          'type' => 'int',
-          'size' => 'tiny',
-          'not null' => TRUE,
-          'default' => 0,
-          'disp-width' => '11'),
+      'uid' => array(
+        'type' => 'int',
+        'unsigned' => TRUE,
+        'description' => 'The user id from {users}.cid',
+        'not null' => TRUE,
+        'disp-width' => '11'),
+      'node_notify' => array(
+        'type' => 'int',
+        'size' => 'tiny',
+        'not null' => TRUE,
+        'default' => 0,
+        'disp-width' => '11'),
+      'comment_notify' => array(
+        'type' => 'int',
+        'size' => 'tiny',
+        'not null' => TRUE,
+        'default' => 0,
+        'disp-width' => '11'),
     ),
     'primary key' => array('uid'),
   );
@@ -121,4 +121,4 @@ function comment_notify_update_7002() {
   );
   db_drop_index('comment_notify', 'notify_hash');
   db_change_field('comment_notify', 'notify_hash', 'notify_hash', $new_spec, $keys);
-}
\ No newline at end of file
+}
