Eu tenho o modelo db abaixo: from datetime import datetime class TermPayment(models.Model): # I have excluded fields that are irrelevant to the question date = models.DateTimeField(default=datetime.now(), blank=True) Eu adiciono uma nova instância usando o abaixo: tp =