dave2wave commented on issue #517: URL: https://github.com/apache/tooling-trusted-releases/issues/517#issuecomment-3820916697
@sbp If I have analyzed this properly this about documenting the class relationships in `models/sql.py` and determining which how deletion is handled for the `1-M` and `1-1` relationships: Do `-C->` annotations indicate a Cascade? 1. Explicit deletions. Before the owner is deleted all of the subs are expressly deleted. 2. Cascade deletion. If the owner is deleted then the sub is automatically deleted by sqlalchemy. 3. Blocked deletion. If certain subs exist then deletion is blocked. When this happens an archive happens. -- This is an automated message from the Apache Git Service. To respond to the message, please log on to GitHub and use the URL above to go to the specific comment. To unsubscribe, e-mail: [email protected] For queries about this service, please contact Infrastructure at: [email protected] --------------------------------------------------------------------- To unsubscribe, e-mail: [email protected] For additional commands, e-mail: [email protected]
