function fbconnect_schema_alter in Facebook Connect 6
Same name and namespace in other branches
- 6.2 fbconnect.install \fbconnect_schema_alter()
Implementation of hook_schema_alter()
Parameters
array $schema:
1 call to fbconnect_schema_alter()
- _fbconnect_change_user_mail_field in ./
fbconnect.install - Extend maximum email length to 320 chars
File
- ./
fbconnect.install, line 99 - Implementation of hook_install().
Code
function fbconnect_schema_alter(&$schema) {
$schema['users']['fields']['mail']['length'] = 320;
}