Skip to content

Commit

Permalink
Bug DataError: (1406, "Data too long for column value at row 1")
Browse files Browse the repository at this point in the history
  • Loading branch information
lionel committed Jan 3, 2017
1 parent ee102bf commit 849002e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion fir_artifacts/models.py
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ def __unicode__(self):

class Artifact(ManyLinkableModel):
type = models.CharField(max_length=20)
value = models.CharField(max_length=200)
value = models.TextField()

def __unicode__(self):
display = self.value
Expand Down

0 comments on commit 849002e

Please sign in to comment.