- drupal
- drupal7
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/mysql/schema.inc, line 271
<?php
public function dropTable(&$ret, $table) {
$ret[] = update_sql('DROP TABLE {' . $table . '}');
}
?>
Kommentare
Kommentar hinzufügen