function db_drop_table

Drops a table.

Parameters

$table: The table to be dropped.

Related topics

18 calls to db_drop_table()

File

drupal/core/includes/database.inc, line 688
Core systems for the database layer.

Code

function db_drop_table($table) {
  return Database::getConnection()
    ->schema()
    ->dropTable($table);
}