function field_update_8001

Reassign all list.module fields to be controlled by options.module.

Related topics

File

drupal/core/modules/field/field.install, line 396
Install, update, and uninstall functions for the Field module.

Code

function field_update_8001() {
  db_update('field_config')
    ->fields(array(
    'module' => 'options',
  ))
    ->condition('module', 'list')
    ->execute();
}