function list_update_7002 in Drupal 7
Re-apply list_update_7001() for deleted fields.
Related topics
File
- modules/
field/ modules/ list/ list.install, line 134 - Install, update and uninstall functions for the list module.
Code
function list_update_7002() {
// See http://drupal.org/node/1022924: list_update_7001() intitally
// overlooked deleted fields, which then caused fatal errors when the fields
// were being purged.
// list_update_7001() has the required checks to ensure it is reentrant, so
// it can simply be executed once more..
list_update_7001();
}