In the Django doc at
http://docs.djangoproject.com/en/dev/ref/models/fields/#django.db.models.ForeignKey,
it mentions explicitly specifying the application label in 1.0:
class Car(models.Model):
manufacturer = models.ForeignKey('production.Manufacturer')
The above is using a string for the ForeignKey, is that the preferred
way over explicitly specifying Manufacturer, like the following:
# assuming class Manufacturer is in the same file as class Car
class Car(models.Model):
manufacturer = models.ForeignKey(Manufacturer)
--~--~---------~--~----~------------~-------~--~----~
You received this message because you are subscribed to the Google Groups
"Django users" group.
To post to this group, send email to [email protected]
To unsubscribe from this group, send email to
[email protected]
For more options, visit this group at
http://groups.google.com/group/django-users?hl=en
-~----------~----~----~----~------~----~------~--~---