summaryrefslogtreecommitdiff
path: root/modules/comment/comment.install
diff options
context:
space:
mode:
authorDries Buytaert <dries@buytaert.net>2008-03-15 12:31:29 +0000
committerDries Buytaert <dries@buytaert.net>2008-03-15 12:31:29 +0000
commitf5d4287cd5561a85061f11f003c27058ddce2dda (patch)
treebf0cd7c6d93060bf316541729b94d1ca5fafb0ce /modules/comment/comment.install
parent637ec9359cb3ef8e5e16008b800d5633c4fe7890 (diff)
downloadbrdo-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.install10
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;
}
-