Pheasant\Database\Mysqli\Table::dropIfExists PHP Method

dropIfExists() public method

Drops the table if it exists
public dropIfExists ( )
    public function dropIfExists()
    {
        $this->_connection->execute(sprintf('DROP TABLE IF EXISTS %s', $this->_name->quoted()));
        return $this;
    }