Changes between Initial Version and Version 1 of Ticket #27536


Ignore:
Timestamp:
Nov 25, 2016, 5:01:50 AM (7 years ago)
Author:
Andrew Dodd
Comment:

Legend:

Unmodified
Added
Removed
Modified
  • Ticket #27536 – Description

    initial v1  
    55#!python
    66class 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)
    99
    1010
    1111class 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)
    1414
    1515    class Meta:
     
    1818
    1919class SubFromSuperWithoutOrdering(SuperWithoutOrdering):
    20     anything = models.CharField(max_length=20)
     20    anything = models.CharField(max_length=200)
    2121
    2222
    2323class SubFromSuperWithOrdering(SuperWithOrdering):
    24     anything = models.CharField(max_length=20)
     24    anything = models.CharField(max_length=200)
    2525
    2626    def __str__(self):
Back to Top