Changes between Initial Version and Version 3 of Ticket #25276
- Timestamp:
- Jan 17, 2017, 12:05:03 PM (8 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
Ticket #25276
- Property Triage Stage Unreviewed → Accepted
- Property Summary It would be very nice if django AlterField raised an error when ordered to alter that doesn't exist → AlterField should raise an error when referenced field doesn't exist
- Property Type New feature → Cleanup/optimization
- Property Version 1.8 → master
- Property Cc added
-
Ticket #25276 – Description
initial v3 1 If I have following model in app ` `foo``:1 If I have following model in app `foo`: 2 2 3 3 {{{#!python 4 4 5 5 class Foo(models.Model): 6 bar = model d.CharField(max_length=500)6 bar = models.CharField(max_length=500) 7 7 8 8 }}}