Skip to content

Commit 41a95ad

Browse files
committed
fix: cleanup
1 parent 110d47a commit 41a95ad

File tree

1 file changed

+5
-5
lines changed

1 file changed

+5
-5
lines changed

src/PgIpLock.ts

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -221,7 +221,7 @@ export class PgIpLock implements AnyLock {
221221
${PgIpLock.schemaName}.lock.app,
222222
${literal(this.options.pgClient.appName)}
223223
)
224-
`);
224+
`);
225225
}
226226

227227
/**
@@ -348,8 +348,8 @@ export class PgIpLock implements AnyLock {
348348
SELECT *
349349
FROM information_schema.columns
350350
WHERE table_schema = '${ PgIpLock.schemaName }'
351-
AND table_name = 'lock'
352-
AND column_name = 'id'
351+
AND table_name = 'lock'
352+
AND column_name = 'id'
353353
) THEN
354354
DROP TABLE IF EXISTS ${ PgIpLock.schemaName }.lock;
355355
END IF;
@@ -382,8 +382,8 @@ export class PgIpLock implements AnyLock {
382382
SELECT *
383383
FROM information_schema.columns
384384
WHERE table_schema = '${ PgIpLock.schemaName }'
385-
AND table_name = 'lock'
386-
AND column_name = 'id'
385+
AND table_name = 'lock'
386+
AND column_name = 'id'
387387
) THEN
388388
DROP TABLE IF EXISTS ${ PgIpLock.schemaName }.lock;
389389
END IF;

0 commit comments

Comments
 (0)