Dear All,
To accomplish this do I need to
create:
class MyCustomTag(TagBase):
and basically I could copy the TagBase fields definition, but with max_length=255
create:
class TaggedWhatever(GenericTaggedItemBase):
and eventually use it in my model like:
class Food(models.Model):
# ... fields here
tags = TaggableManager(through=TaggedWhatever)
Thanks,
D