You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
The expected commit hash based on information stored in the database record does not match what is actually stored. This is likely because Django's auto_now_add appears to be calculated at a different time than the result of timezone.now() inside the save method. We need a way to get the value of auto_now_add inside save(), but the value of that field is None at that time.
The text was updated successfully, but these errors were encountered:
The expected commit hash based on information stored in the database record does not match what is actually stored. This is likely because Django's
auto_now_add
appears to be calculated at a different time than the result oftimezone.now()
inside the save method. We need a way to get the value ofauto_now_add
insidesave()
, but the value of that field isNone
at that time.The text was updated successfully, but these errors were encountered: