function comment_update_7009 in Drupal 7
Change the last_comment_timestamp column description.
Related topics
File
- modules/
comment/ comment.install, line 383 - Install, update and uninstall functions for the comment module.
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.',
));
}