Changes between Initial Version and Version 2 of Ticket #24605


Ignore:
Timestamp:
Apr 9, 2015, 7:34:02 AM (9 years ago)
Author:
Nikolay Kurevin
Comment:

Legend:

Unmodified
Added
Removed
Modified
  • Ticket #24605

    • Property Summary [1.7.7] DB identifiers are not properly escaped in some case (ProgrammingError: relation does not exist)Database identifiers are not properly escaped in some queries
    • Property Type UncategorizedBug
  • Ticket #24605 – Description

    initial v2  
    44
    55{{{
    6 Amodel:
     6class Bmodel(models.Model):
     7    pass
     8
     9class Amodel(models.Model):
    710    bmodel = models.ForeignKey(Bmodel, related_name='Amodel_bmodel')
    8     ...
    9    
    10 Cmodel:
     11
     12class Cmodel(models.Model):
    1113    amodel = models.ForeignKey(Amodel)
    12     ...
    1314}}}
    1415
Back to Top