Fix deleting organization

The foreign key in person must be resetted.
This commit is contained in:
Eike Kettner 2021-01-21 21:27:02 +01:00
parent b9b554980a
commit f4a03e7c69
2 changed files with 6 additions and 2 deletions

View File

@ -197,8 +197,9 @@ object QOrganization {
for {
n0 <- RItem.removeCorrOrg(collective, orgId)
n1 <- RContact.deleteOrg(orgId)
n2 <- ROrganization.delete(orgId, collective)
} yield n0 + n1 + n2
n2 <- RPerson.removeOrg(orgId)
n3 <- ROrganization.delete(orgId, collective)
} yield n0 + n1 + n2 + n3
def deletePerson(personId: Ident, collective: Ident): ConnectionIO[Int] =
for {

View File

@ -178,4 +178,7 @@ object RPerson {
case None =>
Sync[ConnectionIO].pure(Vector.empty)
}
def removeOrg(orgId: Ident): ConnectionIO[Int] =
DML.update(T, T.oid === orgId, DML.set(T.oid.setTo(None)))
}