drop rows from both tables when undoing changes

This commit is contained in:
Trowbridge 2020-02-14 15:42:41 -05:00
parent 18558674c0
commit 33041761c6
1 changed files with 4 additions and 1 deletions

View File

@ -1,5 +1,8 @@
WITH
d AS (
DELETE FROM rlarp.osm_log WHERE id = replace_id RETURNING id
DELETE FROM rlarp.osm_log WHERE id = replace_id RETURNING id
)
,d_osm AS (
DELETE FROM rlarp.osm_pool WHERE logid IN (select id from d)
)
SELECT json_agg(row_to_json(d)) x from d