This question might sound a bit dumb but suppose I have an abstract model `vehicle` with two models branching out of it say `car` and `train`, and lets say we have a `driver` model where the driver have a field `can_drive` that is a foreign key to a `vehicle`. The way I used to do it in an old fashion database is having an extra field in the `driver` model named `vehicle_type` that can tell me what table's primary key this foreign key is pointing at.
How would we do that in MVC model when we have to explicitly specify what table the foreign key refers to inside the model? -- You received this message because you are subscribed to the Google Groups "Django users" group. To post to this group, send email to django-us...@googlegroups.com. To unsubscribe from this group, send email to django-users+unsubscr...@googlegroups.com. For more options, visit this group at http://groups.google.com/group/django-users?hl=en.