Lower the max length for a test field so that it works on MySQL.

This commit is contained in:
Alex Gaynor 2013-05-19 13:58:58 -07:00
parent 190771d003
commit 7c56212c71
1 changed files with 1 additions and 1 deletions

View File

@ -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):