From 8a8de2b78fb49f2ae8bedf4f825e370b4aaafcd0 Mon Sep 17 00:00:00 2001 From: Oliver Walters Date: Thu, 2 May 2019 00:49:30 +1000 Subject: [PATCH] Add migration file - Should pass this time --- .../migrations/0011_auto_20190502_0041.py | 19 +++++++++++++++++++ 1 file changed, 19 insertions(+) create mode 100644 InvenTree/stock/migrations/0011_auto_20190502_0041.py diff --git a/InvenTree/stock/migrations/0011_auto_20190502_0041.py b/InvenTree/stock/migrations/0011_auto_20190502_0041.py new file mode 100644 index 0000000000..b540421de5 --- /dev/null +++ b/InvenTree/stock/migrations/0011_auto_20190502_0041.py @@ -0,0 +1,19 @@ +# Generated by Django 2.2 on 2019-05-01 14:41 + +from django.db import migrations, models +import uuid + + +class Migration(migrations.Migration): + + dependencies = [ + ('stock', '0010_auto_20190501_2344'), + ] + + operations = [ + migrations.AlterField( + model_name='stockitem', + name='uuid', + field=models.UUIDField(blank=True, default=uuid.uuid4, editable=False, help_text='Unique ID for the StockItem'), + ), + ]