How can I subclass a model class, in order to add a temporary field?

For example, say I have a class Car, and I want to subclass it to
TempCar, and add a comment field.

class TempCar(Car):
    comment = models.CharField(max_length = 200)

The trouble arises when I try to get a QuerySet by doing something
like,

redCars = TempCar.objects.filter(color='red')

Django gives me a programming error 1146, table
myproject.myapp.TempCar doesn't exist.

Any help greatly appreciated.  Thanks in advance!

Alex

--~--~---------~--~----~------------~-------~--~----~
You received this message because you are subscribed to the Google Groups 
"Django users" group.
To post to this group, send email to django-users@googlegroups.com
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
-~----------~----~----~----~------~----~------~--~---

Reply via email to