Subclassing an existing model

You want to subclass an existing model in such a way that each model should has its own database table.

Which of these inheritance styles in Django would you use to achieve this?

Options
  • Abstract base classes
  • Multi-table inheritance
  • Proxy models
  • Both Choice 1,2
  • Both Choice 1,3

Related Posts