dlamotte / django-tagging

Automatically exported from code.google.com/p/django-tagging
Other
0 stars 0 forks source link

Tag model should use MAX_TAG_LENGTH as max_length value in name field #239

Open GoogleCodeExporter opened 8 years ago

GoogleCodeExporter commented 8 years ago
name = models.CharField(_('name'), max_length=50, unique=True, db_index=True)

should be:

name = models.CharField(_('name'), max_length=settings.MAX_TAG_LENGTH,
unique=True, db_index=True)

Original issue reported on code.google.com by social.t...@gmail.com on 11 Feb 2010 at 7:47