Drops a table.
$table: The table to be dropped.
... See full list
function db_drop_table($table) { return Database::getConnection() ->schema() ->dropTable($table); }