- drupal
- drupal7
| Versionen | |
| drupal7 |
abstract public DatabaseSchema::dropTable(&$ret, $table) |
Drop a table.
Übergabeparameter
$ret
Array to which query results will be added.
$table
The table to be dropped.
Verwandte Themen
- Schema API
- A Drupal schema definition is an array structure representing one or
more tables and their related keys and indexes. A schema is defined by
hook_schema(), which usually lives in a modulename.install file.
Code
includes/database/schema.inc, line 255
<?php
abstract public function dropTable(&$ret, $table);
?>
Kommentare
Kommentar hinzufügen