Changes between Initial Version and Version 3 of Ticket #25276


Ignore:
Timestamp:
Jan 17, 2017, 12:05:03 PM (8 years ago)
Author:
Anton Samarchyan
Comment:

Legend:

Unmodified
Added
Removed
Modified
  • Ticket #25276

    • Property Triage Stage UnreviewedAccepted
    • Property Summary It would be very nice if django AlterField raised an error when ordered to alter that doesn't existAlterField should raise an error when referenced field doesn't exist
    • Property Type New featureCleanup/optimization
    • Property Version 1.8master
    • Property Cc desecho@… added
  • Ticket #25276 – Description

    initial v3  
    1 If I have following model in app ``foo``:
     1If I have following model in app `foo`:
    22
    33{{{#!python
    44
    55class Foo(models.Model):
    6   bar = modeld.CharField(max_length=500)
     6  bar = models.CharField(max_length=500)
    77 
    88}}}
Back to Top