I have typical model inheritance in my project:
class A(models.Model):
boolean_field = models.BooleanField(default=True)
class B(A):
some_other_field = models.CharField()
I want to override default value of boolean_field in class B, how can I do it?
I think that could be tricky thing to do on a database layer, so maybe at least I can simply override that default value in Django admin (I mean in ModelAdmin form for class B).