Oops I have to correct my self here. The cascade option works
perfectly.
# cascade can be one of:
# None: no constraint is generated
# True: a CASCADE constraint is generated
# False: a RESTRICT constraint is generated
# 'null': a SET NULL trigger is generatedI mistakenly assumed that the cascade would generate database constraints (as was the case in the 0.6 release I recall). Yet it doesn't, the curent version of SQLObjects keeps track of the dependencies internaly :)

