Commit 7c56212c authored by Alex Gaynor's avatar Alex Gaynor
Browse files

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

parent 190771d0
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -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):