Changes between Initial Version and Version 1 of Ticket #29155
- Timestamp:
- Feb 23, 2018, 6:14:55 PM (7 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
Ticket #29155
- Property Triage Stage Unreviewed → Accepted
- Property Summary Using contains field lookup with Substr database function cause modification of second parameter of Substr → Using contains lookup with Substr causes modification of second parameter of Substr
-
Ticket #29155 – Description
initial v1 4 4 {{{ 5 5 class User(models.Model): 6 field1 = models.Char field(max_length=120)7 field2 = models.Char field(max_length=120)6 field1 = models.CharField(max_length=120) 7 field2 = models.CharField(max_length=120) 8 8 }}} 9 9