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)
&
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
2 matches
Mail list logo