function fbconnect_schema_alter in Facebook Connect 6.2
Same name and namespace in other branches
- 6 fbconnect.install \fbconnect_schema_alter()
Implements hook_schema_alter().
@todo remove it / create updating tool
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 173 - Install, update and uninstall functions for the fbconnect module.
Code
function fbconnect_schema_alter(&$schema) {
$schema['users']['fields']['mail']['length'] = 320;
}