diff options
Diffstat (limited to 'modules/comment')
-rw-r--r-- | modules/comment/comment.install | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/modules/comment/comment.install b/modules/comment/comment.install index 959d63732..82dec3488 100644 --- a/modules/comment/comment.install +++ b/modules/comment/comment.install @@ -165,9 +165,10 @@ function comment_schema() { ) ), 'indexes' => array( - 'pid' => array('pid'), - 'nid' => array('nid'), - 'status' => array('status'), // This index is probably unused + 'pid' => array('pid'), + 'nid' => array('nid'), + // This index is probably unused. + 'status' => array('status'), ), 'primary key' => array('cid'), ); @@ -210,10 +211,9 @@ function comment_schema() { ), 'primary key' => array('nid'), 'indexes' => array( - 'node_comment_timestamp' => array('last_comment_timestamp') + 'node_comment_timestamp' => array('last_comment_timestamp'), ), ); return $schema; } - |