We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 0cdbefb commit 9be2900Copy full SHA for 9be2900
src/Drivers/PgSqlDriver.php
@@ -80,6 +80,7 @@ public function rollbackTransaction()
80
public function lock()
81
{
82
try {
83
+ $this->dbal->exec("CREATE SCHEMA IF NOT EXISTS {$this->schema}"); // hotfix
84
$this->dbal->exec("CREATE TABLE {$this->schema}.{$this->lockTableName} (\"foo\" INT)");
85
} catch (\Exception $e) {
86
throw new LockException('Unable to acquire a lock.', NULL, $e);
0 commit comments