function user_update_7015 in Drupal 7
Change {users}.signature_format into varchar.
Related topics
File
- modules/
user/ user.install, line 829 - Install, update and uninstall functions for the user module.
Code
function user_update_7015() {
db_change_field('users', 'signature_format', 'signature_format', array(
'type' => 'varchar',
'length' => 255,
'not null' => FALSE,
'description' => 'The {filter_format}.format of the signature.',
));
}