abstract public function DatabaseSchema::dropTable
Drop a table.
Parameters
$table: The table to be dropped.
Return value
TRUE if the table was successfully dropped, FALSE if there was no table by that name to begin with.
3 methods override DatabaseSchema::dropTable()
- DatabaseSchema_mysql::dropTable in drupal-7.x/
includes/ database/ mysql/ schema.inc - Drop a table.
- DatabaseSchema_pgsql::dropTable in drupal-7.x/
includes/ database/ pgsql/ schema.inc - Drop a table.
- DatabaseSchema_sqlite::dropTable in drupal-7.x/
includes/ database/ sqlite/ schema.inc - Drop a table.
Archivo
- drupal-7.x/
includes/ database/ schema.inc, line 403 - Generic Database schema code.
Class
Código
abstract public function dropTable($table);