function comment_update_7008

Update database to match Drupal 7 schema.

Related topics

File

drupal/modules/comment/comment.install, line 366
Install, update and uninstall functions for the comment module.

Code

function comment_update_7008() {

  // Update default status to 1.
  db_change_field('comment', 'status', 'status', array(
    'type' => 'int',
    'unsigned' => TRUE,
    'not null' => TRUE,
    'default' => 1,
    'size' => 'tiny',
  ));

  // Realign indexes.
  db_drop_index('comment', 'comment_status_pid');
  db_add_index('comment', 'comment_status_pid', array(
    'pid',
    'status',
  ));
  db_drop_index('comment', 'comment_pid_status');
  db_drop_index('comment', 'nid');
}