You are here

function _serial_drop_table in Serial Field 7

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

Drops an assistant serial table for a deleted field.

Parameters

array $field: Serial field.

array $instance: Deleted instance of that serial field.

1 call to _serial_drop_table()
serial_field_delete_instance in ./serial.module
Implements hook_field_delete_instance().

File

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

Code

function _serial_drop_table(array $field, array $instance) {
  db_drop_table(_serial_get_field_table_name($field, $instance));
}