Changes between Version 2 and Version 3 of Ticket #27311


Ignore:
Timestamp:
Oct 4, 2016, 12:34:26 PM (8 years ago)
Author:
Tim Graham
Comment:

I can't reproduce this. Could you provide a sample project and confirm your Django version?

Legend:

Unmodified
Added
Removed
Modified
  • Ticket #27311

    • Property Component UncategorizedMigrations
  • Ticket #27311 – Description

    v2 v3  
    1 Trying to create the migration below which is failing. It seems like the same issue discussed and resolved here https://code.djangoproject.com/ticket/24282
     1Trying to create the migration below which is failing. It seems like the same issue discussed and resolved in #24282.
    22
    33{{{
     
    1010
    1111    b = B(
    12         client=a.user),
     12        client=a.user,
    1313        status=5
    1414    )
    15     invoice.save()
    16 
     15    b.save()
    1716}}}
    1817
     
    2524        status=5
    2625    )
    27 
    2826}}}
    2927
Back to Top