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/aggregator/aggregator.install | |
parent | 637ec9359cb3ef8e5e16008b800d5633c4fe7890 (diff) | |
download | brdo-f5d4287cd5561a85061f11f003c27058ddce2dda.tar.gz brdo-f5d4287cd5561a85061f11f003c27058ddce2dda.tar.bz2 |
- Patch #214271 by recidive: improved schema identation.
Diffstat (limited to 'modules/aggregator/aggregator.install')
-rw-r--r-- | modules/aggregator/aggregator.install | 16 |
1 files changed, 12 insertions, 4 deletions
diff --git a/modules/aggregator/aggregator.install b/modules/aggregator/aggregator.install index 73d2c273c..cacb16a7a 100644 --- a/modules/aggregator/aggregator.install +++ b/modules/aggregator/aggregator.install @@ -56,7 +56,9 @@ function aggregator_schema() { ) ), 'primary key' => array('cid'), - 'unique keys' => array('title' => array('title')), + 'unique keys' => array( + 'title' => array('title'), + ), ); $schema['aggregator_category_feed'] = array( @@ -76,7 +78,9 @@ function aggregator_schema() { ) ), 'primary key' => array('cid', 'fid'), - 'indexes' => array('fid' => array('fid')), + 'indexes' => array( + 'fid' => array('fid'), + ), ); $schema['aggregator_category_item'] = array( @@ -96,7 +100,9 @@ function aggregator_schema() { ) ), 'primary key' => array('cid', 'iid'), - 'indexes' => array('iid' => array('iid')), + 'indexes' => array( + 'iid' => array('iid'), + ), ); $schema['aggregator_feed'] = array( @@ -234,7 +240,9 @@ function aggregator_schema() { ) ), 'primary key' => array('iid'), - 'indexes' => array('fid' => array('fid')), + 'indexes' => array( + 'fid' => array('fid'), + ), ); return $schema; |