If i add ManyToManyField through intermediary table with "help text" and run makemigrations
there will be created 'dummy migration' which doesn't have any sense
and when i call lt repeatingly for example
'./manage,py makemigrations && ./manage,py migrate'
'./manage,py makemigrations && ./manage,py migrate'
'./manage,py makemigrations && ./manage,py migrate'
... and every time without code changing there will be new migration created !
Code example :
parsers = models.ManyToManyField(
Parser,
through='FundParser',
related_name='funds',
blank=True, help_text=_("")
)