From f94b89381f603056a596d4ac367898e08e0b6dbe Mon Sep 17 00:00:00 2001 From: Eli Ribble Date: Thu, 15 Jan 2026 04:11:19 +0000 Subject: [PATCH] Actually delete the organization in delete-org.sql --- tools/delete-org.sql | 1 + 1 file changed, 1 insertion(+) diff --git a/tools/delete-org.sql b/tools/delete-org.sql index 6bc09998..d01361d7 100644 --- a/tools/delete-org.sql +++ b/tools/delete-org.sql @@ -38,4 +38,5 @@ BEGIN; DELETE FROM fieldseeker.treatmentarea WHERE organization_id = :org_id; DELETE FROM fieldseeker.zones WHERE organization_id = :org_id; DELETE FROM fieldseeker.zones2 WHERE organization_id = :org_id; + DELETE FROM organization WHERE id = :org_id; COMMIT;