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
Default implementation of the field storage API.

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);
}