Model Inheritance Django

Published: May 28, 2020, 6:22 p.m.

LinkedIn - https://www.linkedin.com/in/alex-cher/


Model inheritance in Django works almost identically to the way normal class inheritance works in Python, but the basics at the beginning of the page should still be followed. That means the base class should subclass django.db.models.Model.


The only decision you have to make is whether you want the parent models to be models in their own right (with their own database tables), or if the parents are just holders of common information that will only be visible through the child models.

There are three styles of inheritance that are possible in Django.

  1. Often, you will just want to use the parent class to hold information that you don’t want to have to type out for each child model. This class isn’t going to ever be used in isolation, so Abstract base classes are what you’re after.
  2. If you’re subclassing an existing model (perhaps something from another application entirely) and want each model to have its own database table, Multi-table inheritance is the way to go.
  3. Finally, if you only want to modify the Python-level behavior of a model, without changing the models fields in any way, you can use Proxy models.



Apple Podcasts - https://link.chtbl.com/Apple_Podcasts

Spotify - https://link.chtbl.com/8_-EyCh1

Google Podcasts - https://link.chtbl.com/kQr7HKma

Castbox - https://link.chtbl.com/rVlRcBZN


https://docs.djangoproject.com/en/3.0/topics/db/models/#model-inheritance



Get early access and exclusive content:

https://www.patreon.com/angrydeveloper