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 Student ? --~--~---------~--~----~------------~-------~--~----~ 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 django-users+unsubscr...@googlegroups.com For more options, visit this group at http://groups.google.com/group/django-users?hl=en -~----------~----~----~----~------~----~------~--~---