summaryrefslogtreecommitdiff
path: root/modules/aggregator
diff options
context:
space:
mode:
Diffstat (limited to 'modules/aggregator')
-rw-r--r--modules/aggregator/aggregator.install16
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;