Community Documentation

comment_update_7007

7 comment.install comment_update_7007()

Add an index to the created column.

File

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

Code

<?php
function comment_update_7007() {
  db_add_index('comment', 'comment_created', array('created'));
}
?>
Login or register to post comments