There's a known bug that help_text=_("") triggers infinite migrations, 
perhaps you could add your use case to the ticket.

https://code.djangoproject.com/ticket/24964

On Friday, November 11, 2016 at 9:05:32 AM UTC-5, Artem Bernatskyy wrote:
>
> 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 django-users+unsubscr...@googlegroups.com.
To post to this group, send email to django-users@googlegroups.com.
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/39fb7b05-d7e3-4563-a047-9c9fe88b874b%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.

Reply via email to