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/user/user.install | |
parent | 637ec9359cb3ef8e5e16008b800d5633c4fe7890 (diff) | |
download | brdo-f5d4287cd5561a85061f11f003c27058ddce2dda.tar.gz brdo-f5d4287cd5561a85061f11f003c27058ddce2dda.tar.bz2 |
- Patch #214271 by recidive: improved schema identation.
Diffstat (limited to 'modules/user/user.install')
-rw-r--r-- | modules/user/user.install | 12 |
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'), ); |