mirror of
https://github.com/django/django.git
synced 2025-08-03 18:38:50 +00:00
Lower the max length for a test field so that it works on MySQL.
This commit is contained in:
parent
190771d003
commit
7c56212c71
1 changed files with 1 additions and 1 deletions
|
@ -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…
Add table
Add a link
Reference in a new issue