Changes between Initial Version and Version 1 of Ticket #29852


Ignore:
Timestamp:
Oct 16, 2018, 9:11:14 AM (6 years ago)
Author:
Tim Graham
Comment:

I think the problem is this:

>>> a = SimpleLazyObject(datetime.datetime.now)
>>> b = SimpleLazyObject(datetime.datetime.now)
>>> a == b

The two must be considered equal to prevent infinite migrations. See 91f701f4fc324cd2feb7dbf151338a358ca0ea18 for a similar issue.

Legend:

Unmodified
Added
Removed
Modified
  • Ticket #29852

    • Property Component UncategorizedMigrations
    • Property Triage Stage UnreviewedAccepted
    • Property Summary SimpleLazyObject Causing Migrations to be created over and overInfinite migrations when using SimpleLazyObject in field arguments
    • Property Type UncategorizedBug
  • Ticket #29852 – Description

    initial v1  
    1 Reference: https://code.djangoproject.com/ticket/29772
    2 
    31{{{
    42from django.db import models
Back to Top