Hi!
I'm searching on the docs but can't find how to solve this:
Consider this model example
db.define_table(
"mytable",
Field("other_table_name"),
Field("other_table_record_id")
)
It's sort of a way of refering to any table in the db and point to a given record
What I'm looking for is a way of triggering a routine for removing broken references (to deleted records). AFAIK, there is no table ondelete lambda to achieve this. Maybe I could customize the delete form processing, but perhaps there is another way I'm missing so this action can be triggered for any delete action on the table.
Thanks
Alan