mirror of
https://github.com/zitadel/zitadel.git
synced 2024-12-18 05:47:32 +00:00
7 lines
187 B
MySQL
7 lines
187 B
MySQL
|
DELETE FROM zitadel.projections.apps
|
||
|
WHERE project_id IN (
|
||
|
SELECT aggregate_id
|
||
|
FROM eventstore.events
|
||
|
WHERE aggregate_type = 'project' AND event_type = 'project.removed'
|
||
|
);
|