From dc0ae60e196ea3e7e0a4fcc7744edc6080ba1262 Mon Sep 17 00:00:00 2001 From: Todd Dembrey <todd.dembrey@torchbox.com> Date: Tue, 21 Aug 2018 09:34:06 +0100 Subject: [PATCH] Add new migration for file hash --- .../migrations/0002_customimage_file_hash.py | 18 ++++++++++++++++++ 1 file changed, 18 insertions(+) create mode 100644 opentech/images/migrations/0002_customimage_file_hash.py 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 000000000..8a24374d9 --- /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), + ), + ] -- GitLab