DboSource::_dropTable PHP 메소드

_dropTable() 보호된 메소드

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