mirror of
https://github.com/Hopiu/django.git
synced 2026-05-09 16:14:43 +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…
Reference in a new issue