Nis Jørgensen wrote:
> omat skrev:
>> Thanks for the pointer, Nis.
>>
>> Model inheritance made my models so much DRYer that it will be hard to
>> give up, at least psychologically...
>>
>> And, except for the managers, it worked just as I would expect, and
>> for the managers, it was easy to patch.
>>   
> 
> Just to make sure I understand, your expected behavior is
> - Each model gets a db table which include fields from its ancestors
> - Managers and (other) methods are inherited as if they were defined on
> the subclass
> - There is no common interface for subclasses of a model class.
> 
> Correct?
> 
> I would perhaps call this "class templating" rather than "subclassing",
> but I can definitely see its usefulness.

I think the name problem stems from "model" not being well defined, or notr 
properly used.  Is the model the class, the persistence implemented in the db, 
  the shape of the data...?

I agree that what is bing described here is very different than some of the 
other discussions that use the same terms.  which makes it very confusing.  
(the 
other discussions seem to focus around a separate table for each level of 
subclass.)

I am currently trying out what is discussed in this thread, and figured out the 
same hack: db_table = 'message' - Some time this week I hope to have things 
working well enough to post the whole app in 
http://groups.google.com/group/django-hotclub


> 
> Note that you get the probably undesired sideeffect of defining the
> Ortho class as a model - which may cause some confusion if people use
> syncdb and friends, and probably in other cases as well.

So far syncdb has not found my abstract class. I have it in a separate dir not 
referenced by INSTALLED_APPS.  guessing that is the trick, but I am not 100% 
sure how syncdb finds classes.

Carl K

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