Open KavikaPalletenne opened 1 month ago
We can't always CASCADE the deletes, because we want to keep things even if user accounts are deleted. If user is deleted, we put in a dummy id of -1 for example.
CASCADE
-1
This also requires FE and all Postgres JOINs to handle the non-existing user case
JOIN
We can't always
CASCADE
the deletes, because we want to keep things even if user accounts are deleted. If user is deleted, we put in a dummy id of-1
for example.