How does Django handle Model Inheritance?

2007-04-17 Thread Raphael Melo de Oliveira Bastos Sales
Hi everyone, I'm a newcomer to this list, so be patient if this is a dumb question. I'd like to know how does DJango handle Model Inheritance. For example, if I do something like this and use PostgreSQL: class BaseModel( models.Model ): base_attribute = models.CharFiel

Re: How does Django handle Model Inheritance?

2007-04-17 Thread James Bennett
On 4/17/07, Raphael Melo de Oliveira Bastos Sales <[EMAIL PROTECTED]> wrote: > I'm a newcomer to this list, so be patient if this is a dumb > question. I'd like to know how does DJango handle Model Inheritance. Model inheritance is not currently supported in Django. It

Re: How does Django handle Model Inheritance?

2007-04-17 Thread Raphael Melo de Oliveira Bastos Sales
On 4/17/07, James Bennett <[EMAIL PROTECTED]> wrote: > > On 4/17/07, Raphael Melo de Oliveira Bastos Sales > <[EMAIL PROTECTED]> wrote: > > I'm a newcomer to this list, so be patient if this is a dumb > > question. I'd like to know how does