﻿id	summary	reporter	owner	description	type	status	component	version	severity	resolution	keywords	cc	stage	has_patch	needs_docs	needs_tests	needs_better_patch	easy	ui_ux
30048	Migrations created when verbose_name or help_text is changed	Oskar Persson	nobody	"A new migration is created whenever `verbose_name` or `help_text` is changed even though both of them has nothing to do with the database.

Tested with this initial model

{{{
from django.db import models

class Book(models.Model):
    title = models.CharField(max_length=255)
}}}

which was later updated to

{{{
from django.db import models
from django.utils.translation import ugettext_lazy as _

class Book(models.Model):
    title = models.CharField(_('title'), max_length=255, help_text=""Title of the book"")
}}}

Tested with Django 1.11.16 (Python 3.6.6) and 2.1.4 (Python 3.7.0)
"	Bug	closed	Migrations	2.1	Normal	duplicate			Unreviewed	0	0	0	0	0	0
