summaryrefslogtreecommitdiff
path: root/modules/profile/profile.install
diff options
context:
space:
mode:
Diffstat (limited to 'modules/profile/profile.install')
-rw-r--r--modules/profile/profile.install9
1 files changed, 6 insertions, 3 deletions
diff --git a/modules/profile/profile.install b/modules/profile/profile.install
index f05bccd80..a6f0617bb 100644
--- a/modules/profile/profile.install
+++ b/modules/profile/profile.install
@@ -108,8 +108,12 @@ function profile_schema() {
'description' => t('List of options to be used in a list selection field.'),
),
),
- 'indexes' => array('category' => array('category')),
- 'unique keys' => array('name' => array('name')),
+ 'indexes' => array(
+ 'category' => array('category'),
+ ),
+ 'unique keys' => array(
+ 'name' => array('name'),
+ ),
'primary key' => array('fid'),
);
@@ -144,4 +148,3 @@ function profile_schema() {
return $schema;
}
-