Changes between Initial Version and Version 1 of Ticket #21879, comment 4


Ignore:
Timestamp:
Jan 26, 2014, 8:31:25 AM (11 years ago)
Author:
edrobap

Legend:

Unmodified
Added
Removed
Modified
  • Ticket #21879, comment 4

    initial v1  
    44
    55
    6 You are right to point out that only interger primary key can be used in custom User model. But, this bug is not related to only User model. Let's say the models were, you still get the error:
     6You are right to point out that only interger primary key can be used in custom User model. But, this bug is not related to only User model. Let's say the models were:
    77
    88{{{
     
    1919    publications = models.ManyToManyField(Publication)
    2020}}}
     21
     22You will still get the error. Any reverse m2m query will fail in these type of cases.
Back to Top