From f5d4287cd5561a85061f11f003c27058ddce2dda Mon Sep 17 00:00:00 2001 From: Dries Buytaert Date: Sat, 15 Mar 2008 12:31:29 +0000 Subject: - Patch #214271 by recidive: improved schema identation. --- modules/aggregator/aggregator.install | 16 ++++++++++++---- 1 file changed, 12 insertions(+), 4 deletions(-) (limited to 'modules/aggregator/aggregator.install') 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; -- cgit v1.2.3