diff options
author | Jennifer Hodgdon <yahgrp@poplarware.com> | 2012-03-19 06:51:57 -0700 |
---|---|---|
committer | Jennifer Hodgdon <yahgrp@poplarware.com> | 2012-03-19 06:51:57 -0700 |
commit | 83805304412073cf0423698fede2f39f4598a24a (patch) | |
tree | bbb04aab52282f1de9fc781ac497bb7ac7275f8f /modules | |
parent | 93eb34d8d6bf7e56e2613b0fa17d19e303379368 (diff) | |
download | brdo-83805304412073cf0423698fede2f39f4598a24a.tar.gz brdo-83805304412073cf0423698fede2f39f4598a24a.tar.bz2 |
Issue #1488414 by nmudgal, chertzog: Add comment to user_schema to explain why table name is plural in spite of our usual standards
Diffstat (limited to 'modules')
-rw-r--r-- | modules/user/user.install | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/modules/user/user.install b/modules/user/user.install index a48feb5f8..852279683 100644 --- a/modules/user/user.install +++ b/modules/user/user.install @@ -120,6 +120,8 @@ function user_schema() { ), ); + // The table name here is plural, despite Drupal table naming standards, + // because "user" is a reserved word in many databases. $schema['users'] = array( 'description' => 'Stores user data.', 'fields' => array( |