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 20ffad4 commit 6648bcbCopy full SHA for 6648bcb
src/Adapters/Storage/Postgres/PostgresStorageAdapter.js
@@ -729,7 +729,7 @@ export class PostgresStorageAdapter {
729
const values = [className, ...valuesArray];
730
return conn.task(t => {
731
return this._ensureSchemaCollectionExists(t)
732
- .then(() => conn.none(qs, values))
+ .then(() => t.none(qs, values))
733
.catch(error => {
734
if (error.code === PostgresDuplicateRelationError) {
735
// Table already exists, must have been created by a different request. Ignore error.
0 commit comments