I have two simple models, one representing a movie an the other representing a rating for a movie.
class Movie(models.Model):
id = models.AutoField(primary_key=True)
title = models.TextField()
class Rating(models.Model):
id = models.AutoField(primary_key=True)
movie = models.ForeignKey(Movie)
rating = models.FloatField()
My expectation is that I would be able to first create a Movie and a Review referencing that movie then commit them both to the database, as long as I committed the Movie first so that it was given a primary key for the Review to refer to.
the_hobbit = Movie(title="The Hobbit")
my_rating = Rating(movie=the_hobbit, rating=8.5)
the_hobbit.save()
my_rating.save()
To my surprise it still raised an IntegrityError complaining that I was trying to specify a null foreign key, even the Movie had been committed and now had a primary key.
IntegrityError: null value in column "movie_id" violates not-null constraint
I confirmed this by adding some print statements:
print "the_hobbit.id =", the_hobbit.id # None
print "my_rating.movie.id =", my_rating.movie.id # None
print "my_rating.movie_id =", my_rating.movie_id # None
the_hobbit.save()
print "the_hobbit.id =", the_hobbit.id # 3
print "my_rating.movie.id =", my_rating.movie.id # 3
print "my_rating.movie_id =", my_rating.movie_id # None
my_rating.save() # raises IntegrityError
The .movie attribute is referring to a Movie instance which does have a non-None .id, but .movie_id is holding into the value None that it had when the Movie instance was crated.
I expected Django to look up .movie.id when I tried to commit the Review, but apparently that's not what it's doing.
Aside
In my case, I've dealt this this behaviour by overriding the .save() method on some models so that they look up the primary keys of foreign keys again before saving.
def save(self, *a, **kw):
for field in self._meta.fields:
if isinstance(field, ForeignKey):
id_attname = field.attname
instance_attname = id_attname.rpartition("_id")[0]
instance = getattr(self, instance_attname)
instance_id = instance.pk
setattr(self, id_attname, instance_id)
return Model.save(self, *a, **kw)
This is hacky, but it works for me so I am not really looking for a solution to this particular problem.
I am looking for an explanation of Django's behaviour. At what points does Django look up the primary key for foreign keys? Please be specific; references to the Django source code would be best.
Movie.objects.create(title="The Hobbit")etc. – Hedde Nov 29 '12 at 18:23.save()on theMoviebefore I create theReview. Django definitely seems to only check the ID when the instance is created. I hope somebody can find a precise reference for this behaviour. – Jeremy Banks Nov 29 '12 at 18:25.field_idattributes on the model with decorators that retrieve.field.id. Unfortunately, it turns out that.fieldis a descriptor that depends on the value of.field_idto behave properly. This became too complicated for me to easily deal with, given my limited knowledge of Django internals. – Jeremy Banks Nov 29 '12 at 19:12.save()an instance so that Django gets an.idfrom the database, the instance will keep that.ideven if the transaction the.save()occurred is rolled back. (It's not obvious to me how they would do something else; I'm not criticizing this.) The next time you try to.save()it Django willINSERTit with that same primary key -- the database won't generate a new one. (I think most/all database backends will never generate the same primary key even in cases of rollbacks like this, so it shouldn't be an issue.) – Jeremy Banks Dec 19 '12 at 17:43