DboSource::_dropTable PHP Method

_dropTable() protected method

Generate a "drop table" statement for a single table
protected _dropTable ( type $table ) : string
$table type Name of the table to drop
return string Drop table SQL statement
    protected function _dropTable($table)
    {
        return 'DROP TABLE ' . $this->fullTableName($table) . ";";
    }
DboSource