[Django]-How to use base class in models.py but NOT have django create a table for the base class?

5👍

Yes. Read the docs: https://docs.djangoproject.com/en/dev/topics/db/models/#model-inheritance

The base classes should contain:

class Meta:
    abstract = True
👤Marcin

Leave a comment