mirror of
https://github.com/TheAnachronism/docspell.git
synced 2025-04-04 18:39:33 +00:00
Fix deleting organization
The foreign key in person must be resetted.
This commit is contained in:
parent
b9b554980a
commit
f4a03e7c69
@ -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 {
|
||||
|
@ -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)))
|
||||
}
|
||||
|
Loading…
x
Reference in New Issue
Block a user