diff --git a/opentech/images/migrations/0002_customimage_file_hash.py b/opentech/images/migrations/0002_customimage_file_hash.py new file mode 100644 index 0000000000000000000000000000000000000000..8a24374d99544af569bc6153db9ce9b6606e1992 --- /dev/null +++ b/opentech/images/migrations/0002_customimage_file_hash.py @@ -0,0 +1,18 @@ +# Generated by Django 2.0.8 on 2018-08-21 08:33 + +from django.db import migrations, models + + +class Migration(migrations.Migration): + + dependencies = [ + ('images', '0001_initial'), + ] + + operations = [ + migrations.AddField( + model_name='customimage', + name='file_hash', + field=models.CharField(blank=True, editable=False, max_length=40), + ), + ]