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 46f8bce commit 171870eCopy full SHA for 171870e
src/Adapters/Storage/Postgres/PostgresStorageAdapter.js
@@ -736,7 +736,7 @@ export class PostgresStorageAdapter implements StorageAdapter {
736
const values = [className, ...valuesArray];
737
return conn.task(t => {
738
return this._ensureSchemaCollectionExists(t)
739
- .then(() => conn.none(qs, values))
+ .then(() => t.none(qs, values))
740
.catch(error => {
741
if (error.code === PostgresDuplicateRelationError) {
742
// Table already exists, must have been created by a different request. Ignore error.
0 commit comments