Drops a field.
$table: The table to be altered.
$field: The field to be dropped.
... See full list
function db_drop_field($table, $field) { return Database::getConnection() ->schema() ->dropField($table, $field); }