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=_("")
    )

-- 
You received this message because you are subscribed to the Google Groups 
"Django users" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to [email protected].
To post to this group, send email to [email protected].
Visit this group at https://groups.google.com/group/django-users.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/django-users/b53cada1-4de3-4538-abb2-5e8dbd579595%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.

Reply via email to