When enable_record_versioning is being utilized, db rows aren't actually deleted, but the "is_active" bit is flipped off instead. As far as I can tell, this means that the _after_delete callback for a given table won't be called, which is problematic when you are using this callback to delete/flip off 'is active' bits of associated rows in other tables. Is there any convenient way around this, or will it simply be necessary to forgo the callback, and flip the "is_active" bit of associated records in other tables manually by performing an update() when deleting a record?
-- --- You received this message because you are subscribed to the Google Groups "web2py-users" group. To unsubscribe from this group and stop receiving emails from it, send an email to [email protected]. For more options, visit https://groups.google.com/groups/opt_out.

