We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 3ed1c0a commit 4bb5c8bCopy full SHA for 4bb5c8b
lib/PicoDb/Driver/Mssql.php
@@ -135,7 +135,7 @@ public function getLastId()
135
*/
136
public function getSchemaVersion()
137
{
138
- $this->pdo->exec("CREATE TABLE IF NOT EXISTS [".$this->schemaTable."] ([version] INT DEFAULT '0')");
+ $this->pdo->exec("IF (OBJECT_ID('".$this->schemaTable."')) IS NULL CREATE TABLE [".$this->schemaTable."] ([version] INT DEFAULT '0')");
139
140
$rq = $this->pdo->prepare('SELECT [version] FROM ['.$this->schemaTable.']');
141
$rq->execute();
0 commit comments