Changes between Initial Version and Version 1 of Ticket #21879, comment 4
- Timestamp:
- Jan 26, 2014, 8:31:25 AM (11 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
Ticket #21879, comment 4
initial v1 4 4 5 5 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: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: 7 7 8 8 {{{ … … 19 19 publications = models.ManyToManyField(Publication) 20 20 }}} 21 22 You will still get the error. Any reverse m2m query will fail in these type of cases.