t('Stores information about which commenters on the site have subscriped to followup emails.'), 'fields' => array( 'cid' => array( 'type' => 'serial', 'description' => 'The comment id from {node_comments}.cid', 'not null' => TRUE, 'disp-width' => '11'), 'notify' => array( 'type' => 'int', 'description' => 'A boolean indicator for whether or not they subscribed: 1 means subscribed, 0 means not subscribed.', 'size' => 'tiny', 'not null' => TRUE, 'disp-width' => '11'), 'notify_hash' => array( 'type' => 'varchar', 'description' => 'An md5 hash of unique information about the commenter. Used for unsubscribing users.', 'length' => '32', 'not null' => TRUE, 'default' => ''), 'notified' => array( 'type' => 'int', 'description' => 'A boolean indicator for whether or not a notification for the comment has been sent: 1 means yes, 0 means no.', 'size' => 'tiny', 'not null' => TRUE, 'disp-width' => '11'), ), 'primary key' => array('cid'), 'indexes' => array( 'notify_hash' => array('notify_hash')), ); return $schema; }