Tagged Questions

3
votes
3answers
2k views

Django MTMField: limit_choices_to = other_ForeignKeyField_on_same_model?

I've got a couple django models that look like this: from django.contrib.sites.models import Site class Photo(models.Model): title = models.CharField(max_length=100) site = ...
2
votes
1answer
189 views

Django syncdb conflicting related_name when using inheritance and ForeignKey

This time I think it's not me being stupid but an actual conflict. I have the below code (simplified): from django.db import models class Alpha(models.Model): relation = ...
2
votes
0answers
748 views

HIbernate - “A Foreign Key referring <table1> from <table2> has the wrong number of column. Should be 2” error

I've been searching for the solution to this question for a while now. I have found a few threads talking about many-to-many relationships causing this issue, but I don't think that applies to my ...