Pheasant\Database\Mysqli\Table::drop PHP 메소드

drop() 공개 메소드

Drops the table
public drop ( )
    public function drop()
    {
        $this->_connection->execute(sprintf('DROP TABLE %s', $this->_name->quoted()));
        return $this;
    }