Re: Subject: Model Inheritance

2009-06-26 Thread Rick
Hi, On Jun 26, 9:24 am, Karen Tracey wrote: > On Fri, Jun 26, 2009 at 12:11 PM, Daniele Procida > > wrote: > > > Given: > > > class Cyclist(models.Model): > > > and: > > > class ProfessionalCyclist (Cyclist): > > > I can't immediately see way to make an existing Cyclist into a > > ProfessionalC

Re: Subject: Model Inheritance

2009-06-26 Thread Karen Tracey
On Fri, Jun 26, 2009 at 12:11 PM, Daniele Procida wrote: > > Given: > > class Cyclist(models.Model): > > and: > > class ProfessionalCyclist (Cyclist): > > I can't immediately see way to make an existing Cyclist into a > ProfessionalCyclist (in either Admin interface). > > How can this be achieved

Subject: Model Inheritance

2009-06-26 Thread Daniele Procida
Given: class Cyclist(models.Model): and: class ProfessionalCyclist (Cyclist): I can't immediately see way to make an existing Cyclist into a ProfessionalCyclist (in either Admin interface). How can this be achieved (can it be achieved)? Daniele --~--~-~--~~~--