I have a table with an upload field declared with autodelete=True. The
upload file is not really uploaded, it's created on the fly. The table
id is referenced by a queue, which is polled to determine whether or
not the upload file needs to be created. Once created, the queue entry
is deleted. This is where the problem is -- deleting the queue entry
also deletes the uploaded file. I only want the uploaded file deleted
when it's parent record is deleted, not when the queue record is
deleted. I've tried a db.mytable.fieldname.autodelete=False just
before deleting the queue entry, but this doesn't work. What should I
be doing?