function comment_update_7009

Change the last_comment_timestamp column description.

Related topics

File

modules/comment/comment.install, line 383

Code

function comment_update_7009() {
    db_change_field('node_comment_statistics', 'last_comment_timestamp', 'last_comment_timestamp', array(
        'type' => 'int',
        'not null' => TRUE,
        'default' => 0,
        'description' => 'The Unix timestamp of the last comment that was posted within this node, from {comment}.changed.',
    ));
}

Buggy or inaccurate documentation? Please file an issue. Need support? Need help programming? Connect with the Drupal community.