Changes between Initial Version and Version 1 of Ticket #27536
- Timestamp:
- Nov 25, 2016, 5:01:50 AM (8 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
Ticket #27536 – Description
initial v1 5 5 #!python 6 6 class SuperWithoutOrdering(models.Model): 7 name = models.CharField(max_length=20 )8 extra = models.CharField(max_length=20 )7 name = models.CharField(max_length=200) 8 extra = models.CharField(max_length=200) 9 9 10 10 11 11 class SuperWithOrdering(models.Model): 12 name = models.CharField(max_length=20 )13 extra = models.CharField(max_length=20 )12 name = models.CharField(max_length=200) 13 extra = models.CharField(max_length=200) 14 14 15 15 class Meta: … … 18 18 19 19 class SubFromSuperWithoutOrdering(SuperWithoutOrdering): 20 anything = models.CharField(max_length=20 )20 anything = models.CharField(max_length=200) 21 21 22 22 23 23 class SubFromSuperWithOrdering(SuperWithOrdering): 24 anything = models.CharField(max_length=20 )24 anything = models.CharField(max_length=200) 25 25 26 26 def __str__(self):