db_drop_table

6 database.mysql-common.inc db_drop_table(&$ret, $table)
6 database.pgsql.inc db_drop_table(&$ret, $table)
7 database.inc db_drop_table($table)
8 database.inc db_drop_table($table)

Drops a table.

Parameters

$table: The table to be dropped.

Related topics

25 calls to db_drop_table()

File

includes/database/database.inc, line 2783
Core systems for the database layer.

Code

function db_drop_table($table) {
  return Database::getConnection()->schema()->dropTable($table);
}
Login or register to post comments