function field_sql_storage_field_storage_purge_field
Implements hook_field_storage_purge_field().
All field data items and instances have already been purged, so all that is left is to delete the table.
File
-
modules/
field/ modules/ field_sql_storage/ field_sql_storage.module, line 904
Code
function field_sql_storage_field_storage_purge_field($field) {
$table_name = _field_sql_storage_tablename($field);
$revision_name = _field_sql_storage_revision_tablename($field);
db_drop_table($table_name);
db_drop_table($revision_name);
}
Buggy or inaccurate documentation? Please file an issue. Need support? Need help programming? Connect with the Drupal community.