[Fixed]-Django makemigrations Failing When Trying to Add ForeignKey to Existing Model

1👍

The help text declaration (the call to ugetttext) is formatted improperly. To solve this, change this:

verbose_name = _('Translation','part_of_speech')

to this:

verbose_name = _('Translation | part_of_speech')
👤JayGee

Leave a comment