wagtail/wagtail/tests/testapp/migrations/0040_customdocument_file_hash.py
2018-10-31 15:13:53 +00:00

18 lines
429 B
Python

# Generated by Django 2.1.2 on 2018-10-28 11:33
from django.db import migrations, models
class Migration(migrations.Migration):
dependencies = [
('tests', '0039_customdocument_description'),
]
operations = [
migrations.AddField(
model_name='customdocument',
name='file_hash',
field=models.CharField(blank=True, editable=False, max_length=40),
),
]