I would like to automatically create an expire date in my model based on the create date. Say 60 days?
class Something ( models.Model ):
created = models.DateTimeField ( auto_now_add = True )
expires = models.DateTimeField ( )
What is the best way to accomplish this?
Thanks!