@acuris/eventstore-postgresql
Advanced tools
Comparing version 1.0.13 to 1.0.14
@@ -93,2 +93,6 @@ "use strict"; | ||
await withTransaction_1.withTransaction(conn, async () => { | ||
const quotedSchema = conn.escapeIdentifier(schema); | ||
await conn.query(`DROP TRIGGER project_latest_event ON ${quotedSchema}.event`); | ||
await conn.query(`DROP FUNCTION ${quotedSchema}.project_latest_event()`); | ||
await conn.query(`DROP TABLE ${quotedSchema}.latest_event CASCADE`); | ||
}); | ||
@@ -95,0 +99,0 @@ } |
{ | ||
"name": "@acuris/eventstore-postgresql", | ||
"private": false, | ||
"version": "1.0.13", | ||
"version": "1.0.14", | ||
"description": "Eventstore implementation storing events in Postgresql", | ||
@@ -6,0 +6,0 @@ "keywords": [ |
23463
513