When I review code, I want to be aware of all its side effects, and I check if there exists code to undo these side effects. If an application automatically persists some data, it is not necessary that this application will eventually delete this data automatically, but if that is not the case, then I want it to be the case this application provides the user the ability to delete this data.
Consider collections of persisted data that can grow arbitrarily large. A common example of this is an application's logs. If an application will delete (automatically or manually) all such persisted data, then I consider this application "data neutral", which is a play on the phrase carbon neutral. In this case, the only a constant amount of the application's data will never be deleted. Otherwise, an application is data positive, which is a bad thing. Eventually, such an application will consume all of its storage space, even if it began with lots of it.
Don't let your applications be data positive. Ensure that they are data neutral.