Let\'s say I have an abstract base class that looks like this:
class StellarObject(BaseModel): title = models.CharField(max_length=255) description = mod
Don't use an abstract base class if you need to query on the base. Use a concrete base class instead.