Delete Files When Deleting Models in Django
2 minute readIn Django, when you delete a model instance from the database the files uploaded to those instances are not deleted automatically. This can lead to having lots of “orphaned” files: they’re not referenced by the database, but they’re still taking up space on the server. In this post, I’ll share how to change that so […]
Read More Delete Files When Deleting Models in Django