diff --git a/InvenTree/build/migrations/0020_auto_20201019_1325.py b/InvenTree/build/migrations/0020_auto_20201019_1325.py new file mode 100644 index 0000000000..1406530c8d --- /dev/null +++ b/InvenTree/build/migrations/0020_auto_20201019_1325.py @@ -0,0 +1,18 @@ +# Generated by Django 3.0.7 on 2020-10-19 13:25 + +from django.db import migrations, models + + +class Migration(migrations.Migration): + + dependencies = [ + ('build', '0019_auto_20201019_1302'), + ] + + operations = [ + migrations.AlterField( + model_name='build', + name='title', + field=models.CharField(help_text='Brief description of the build', max_length=100, verbose_name='Description'), + ), + ] diff --git a/InvenTree/build/models.py b/InvenTree/build/models.py index 62f6cdea09..196b25978c 100644 --- a/InvenTree/build/models.py +++ b/InvenTree/build/models.py @@ -89,7 +89,7 @@ class Build(MPTTModel): ) title = models.CharField( - verbose_name=_('Build Title'), + verbose_name=_('Description'), blank=False, max_length=100, help_text=_('Brief description of the build')