1 schema.inc abstract public DatabaseSchema::dropTable($table)

Drop a table.

Parameters

string $table: The table to be dropped.

Return value

bool: TRUE if the table was successfully dropped, FALSE if there was no table by that name to begin with.

File

core/includes/database/schema.inc, line 419
Generic Database schema code.

Class

DatabaseSchema
Base class for database schema definitions.

Code

abstract public function dropTable($table);