En Django - Herencia del modelo - ¿Le permite anular el atributo de un modelo principal?

Estoy buscando hacer esto: class Place(models.Model): name = models.CharField(max_length=20) rating = models.DecimalField() class LongNamedRestaurant(Place): # Subclassing `Place`. name = models.CharField(max_length=255) # Notice, I'm overriding `Place.name` to give it a longer length....