[Django]-Is this how django does Single Table Inheritance?

3👍

✅

There will be two tables created, one for Picture, and one for Video. It will not be possible to create a query that returns both types.

“Abstract base classes”

4👍

Unfortunately, Django does not support single table inheritance: Single Table Inheritance in Django

Leave a comment