|
|
|
|
|
by DasIch
1162 days ago
|
|
A foreign key doesn't necessarily imply an index. If you are using postgres, you would have to add an index in addition to the foreign key, if you want one. On delete cascade, depending on how many rows it cascades to, can be problematic because it's a very long running blocking operation. That's something one might want to do as a background operation and in batches. Although that won't make it faster. |
|
Personally, I find delete on cascade dangerous. I mean, lots of fun for a pen tester, sure…