function system_update_7032
- Alter field hostname to identifier in the {flood} table.
Related topics
Archivo
- drupal-7.x/modules/system/system.install, line 2156
- Install, update and uninstall functions for the system module.
Código
function system_update_7032() {
db_drop_index('flood', 'allow');
db_change_field('flood', 'hostname', 'identifier', array('type' => 'varchar', 'length' => 128, 'not null' => TRUE, 'default' => ''));
db_add_index('flood', 'allow', array('event', 'identifier', 'timestamp'));
}