summaryrefslogtreecommitdiff
path: root/modules/user
diff options
context:
space:
mode:
Diffstat (limited to 'modules/user')
-rw-r--r--modules/user/user.install12
1 files changed, 9 insertions, 3 deletions
diff --git a/modules/user/user.install b/modules/user/user.install
index d96adec00..3f08bc7c2 100644
--- a/modules/user/user.install
+++ b/modules/user/user.install
@@ -68,7 +68,9 @@ function user_schema() {
'description' => t('Module which is controlling the authentication.'),
),
),
- 'unique keys' => array('authname' => array('authname')),
+ 'unique keys' => array(
+ 'authname' => array('authname'),
+ ),
'primary key' => array('aid'),
);
@@ -102,7 +104,9 @@ function user_schema() {
),
),
'primary key' => array('pid'),
- 'indexes' => array('rid' => array('rid')),
+ 'indexes' => array(
+ 'rid' => array('rid'),
+ ),
);
$schema['role'] = array(
@@ -122,7 +126,9 @@ function user_schema() {
'description' => t('Unique role name.'),
),
),
- 'unique keys' => array('name' => array('name')),
+ 'unique keys' => array(
+ 'name' => array('name'),
+ ),
'primary key' => array('rid'),
);