Re: Subclassing Models in non model class

2016-12-28 Thread M Hashmi
Thanks for the reply. I was trying to understand sql level inheritance difference between Proxy based models and abstract models. I got it figured out. Thanks Regards, Mudassar On Wed, Dec 28, 2016 at 4:09 AM, Melvyn Sopacua wrote: > On Tuesday 27 December 2016 05:51:55 M Hashmi wrote: > > > >

Re: Subclassing Models in non model class

2016-12-28 Thread Melvyn Sopacua
On Tuesday 27 December 2016 05:51:55 M Hashmi wrote: > I created a model Address like a normal practice below. Now I need to > create a subclass without using models.Model. But its not letting me > do because obviously it won't create tables unless I call > models.Model in class parameters. > > I

Subclassing Models in non model class

2016-12-27 Thread M Hashmi
Hi All, I created a model Address like a normal practice below. Now I need to create a subclass without using models.Model. But its not letting me do because obviously it won't create tables unless I call models.Model in class parameters. Idea is to create a model and use that model with non db r