diff options
author | Dries Buytaert <dries@buytaert.net> | 2008-03-15 12:31:29 +0000 |
---|---|---|
committer | Dries Buytaert <dries@buytaert.net> | 2008-03-15 12:31:29 +0000 |
commit | f5d4287cd5561a85061f11f003c27058ddce2dda (patch) | |
tree | bf0cd7c6d93060bf316541729b94d1ca5fafb0ce /modules/comment/comment.install | |
parent | 637ec9359cb3ef8e5e16008b800d5633c4fe7890 (diff) | |
download | brdo-f5d4287cd5561a85061f11f003c27058ddce2dda.tar.gz brdo-f5d4287cd5561a85061f11f003c27058ddce2dda.tar.bz2 |
- Patch #214271 by recidive: improved schema identation.
Diffstat (limited to 'modules/comment/comment.install')
-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; } - |