Changes between Initial Version and Version 2 of Ticket #24605
- Timestamp:
- 04/09/15 12:34:02 (8 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
Ticket #24605
-
Property
Type
changed from
Uncategorized
toBug
-
Property
Summary
changed from
[1.7.7] DB identifiers are not properly escaped in some case (ProgrammingError: relation does not exist)
toDatabase identifiers are not properly escaped in some queries
-
Property
Type
changed from
-
Ticket #24605 – Description
initial v2 4 4 5 5 {{{ 6 Amodel: 6 class Bmodel(models.Model): 7 pass 8 9 class Amodel(models.Model): 7 10 bmodel = models.ForeignKey(Bmodel, related_name='Amodel_bmodel') 8 ... 9 10 Cmodel: 11 12 class Cmodel(models.Model): 11 13 amodel = models.ForeignKey(Amodel) 12 ...13 14 }}} 14 15