You are here

function _serial_drop_table in Serial Field 6

Same name and namespace in other branches
  1. 7 serial.inc \_serial_drop_table()

Drops an assistant serial table for a deleted field.

Parameters

$field a deleted serial field:

1 call to _serial_drop_table()
serial_content_fieldapi in ./serial.module
Implementation of hook_fieldapi().

File

./serial.inc, line 32
Internal functions for the Serial module.

Code

function _serial_drop_table($field) {
  $table = _serial_get_field_table_name($field);
  db_drop_table($ret, $table);
}