I have a table
db.define_table('my_table',
Field('name','upload',autodelete=True,uploadseparate=True,requires=(...some
stuff...))
)but when I delete a record in my_table, the corresponding uploaded file is not being deleted. Am I doing something wrong, or is anyone else seeing this behavior?

