mirror of https://github.com/django/django.git
Lower the max length for a test field so that it works on MySQL.
This commit is contained in:
parent
190771d003
commit
7c56212c71
|
@ -31,7 +31,7 @@ class Profile(models.Model):
|
|||
|
||||
|
||||
class Tag(models.Model):
|
||||
text = models.CharField(max_length=256, unique=True)
|
||||
text = models.CharField(max_length=255, unique=True)
|
||||
|
||||
|
||||
class Thing(models.Model):
|
||||
|
|
Loading…
Reference in New Issue