On 11/4/06, argan <[EMAIL PROTECTED]> wrote:
>
>
>  hi,guys:
>
>  Here is my models:
>
>  from django.db import models
>
>  # Create your models here.
>  class User(models.Model):
>          pass
>
>  class MyEntity(models.Model):
>          user = models.ForeignKey(User)
>          name = models.CharField(maxlength=30)
>          create_date = models.DateTimeField()
>
>  class Category(MyEntity):
>          pass
>  [snip]

Django doesn't support model inheritance at this time. Hopefully soon,
but not right now.

Jay P.

--~--~---------~--~----~------------~-------~--~----~
 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