| Versionen | |
|---|---|
| drupal6 – drupal7 | db_drop_table(&$ret, $table) |
Drop a table.
$ret Array to which query results will be added.
$table The table to be dropped.
includes/
<?php
function db_drop_table(&$ret, $table) {
return Database::getConnection()->schema()->dropTable($ret, $table);
}
?>
Kommentare
Kommentar hinzufügen