django-model-utils/model_utils/tests/models.py

11 lines
181 B
Python
Raw Normal View History

from django.db import models
from model_utils.models import InheritanceCastModel
class InheritParent(InheritanceCastModel):
pass
class InheritChild(InheritParent):
pass