--
You received this message because you are subscribed to the Google Groups "Django developers (Contributions to Django itself)" group.
To unsubscribe from this group and stop receiving emails from it, send an email to django-develop...@googlegroups.com.
To post to this group, send email to django-d...@googlegroups.com.
Visit this group at http://groups.google.com/group/django-developers.
To view this discussion on the web visit https://groups.google.com/d/msgid/django-developers/5693dbd6-e789-4025-8a92-5b491269bf9e%40googlegroups.com.
from django.db import models
class TimeStampedModel(models.Model): created_at = models.DateTimeField(auto_now_add=True) updated_at = models.DateTimeField(auto_now=True)
class Meta: abstract = True
class Member(TimeStampedModel): member_id = models.CharField(max_length=255)
class EliteMember(Member, TimeStampedModel): additional_elite_data = models.TextField()
django.core.management.base.SystemCheckError: SystemCheckError: System check identified some issues:
ERRORS:myapp.EliteMember.created_at: (models.E006) The field 'created_at' clashes with the field 'created_at' from model 'myapp.member'.myapp.EliteMember.updated_at: (models.E006) The field 'updated_at' clashes with the field 'updated_at' from model 'myapp.member'.
System check identified 2 issues (0 silenced).