function user_update_7016
Update the database to match the schema.
Related topics
Archivo
- drupal-7.x/
modules/ user/ user.install, line 845 - Install, update and uninstall functions for the user module.
Código
function user_update_7016() {
// Add field default.
db_change_field('users', 'uid', 'uid', array(
'type' => 'int',
'unsigned' => TRUE,
'not null' => TRUE,
'default' => 0,
));
}