Hi,
I wonder if it is possible to use CREATE in phql queries? At present all I get is an exception with "Syntax error, unexpected token IDENTIFIER(CREATE)"
atm I have the following code:
```php
$sql = "CREATE TABLE IF NOT EXISTS ...."
$query = new \Phalcon\Mvc\Model\Query($sql, $this->getDI());
$query->execute();
So are create queries not possible or am I doing something wrong?