| Versionen | |
|---|---|
| drupal7 | public DatabaseSchema_sqlite::dropTable(&$ret, $table) |
Drop a table.
$ret Array to which query results will be added.
$table The table to be dropped.
includes/
<?php
public function dropTable(&$ret, $table) {
$ret[] = update_sql('DROP TABLE {' . $table . '}');
}
?>
Kommentare
Kommentar hinzufügen