Re: Inheritance question

2009-01-05 Thread carlopires
n Fri, 2009-01-02 at 16:29 -0800, carlopires wrote: > > Hi, > > > I'm trying Multi Table Inheritance with: > > > class Person(models.Model): > >    name = CharField(max_length=30) > > > class Student(Person): > >    course = CharField(max_length=30) &

Inheritance question

2009-01-02 Thread carlopires
Hi, I'm trying Multi Table Inheritance with: class Person(models.Model): name = CharField(max_length=30) class Student(Person): course = CharField(max_length=30) on db shell: p = Person(name='Carlo') p.save() Why I can't: s = Student(p) s.save() ? How Can I evolute a Person to Studen