From c61eeca3e463aafb6df36d30a7b791165d70a792 Mon Sep 17 00:00:00 2001 From: James Newlands Date: Tue, 27 Oct 2020 15:58:05 +1100 Subject: [PATCH] Even though nothing happened to the database schema, the field description changed --- .../migrations/0052_auto_20201027_1557.py | 19 +++++++++++++++++++ 1 file changed, 19 insertions(+) create mode 100644 InvenTree/part/migrations/0052_auto_20201027_1557.py diff --git a/InvenTree/part/migrations/0052_auto_20201027_1557.py b/InvenTree/part/migrations/0052_auto_20201027_1557.py new file mode 100644 index 0000000000..94dbcac06e --- /dev/null +++ b/InvenTree/part/migrations/0052_auto_20201027_1557.py @@ -0,0 +1,19 @@ +# Generated by Django 3.0.7 on 2020-10-27 04:57 + +import InvenTree.fields +from django.db import migrations + + +class Migration(migrations.Migration): + + dependencies = [ + ('part', '0051_bomitem_optional'), + ] + + operations = [ + migrations.AlterField( + model_name='part', + name='link', + field=InvenTree.fields.InvenTreeURLField(blank=True, help_text='Link to external URL', null=True), + ), + ]