diff options
Diffstat (limited to 'archaeological_context_records/migrations')
-rw-r--r-- | archaeological_context_records/migrations/0046_auto_20190528_1048.py | 25 |
1 files changed, 25 insertions, 0 deletions
diff --git a/archaeological_context_records/migrations/0046_auto_20190528_1048.py b/archaeological_context_records/migrations/0046_auto_20190528_1048.py new file mode 100644 index 000000000..f00f2a184 --- /dev/null +++ b/archaeological_context_records/migrations/0046_auto_20190528_1048.py @@ -0,0 +1,25 @@ +# -*- coding: utf-8 -*- +# Generated by Django 1.11.18 on 2019-05-28 10:48 +from __future__ import unicode_literals + +from django.db import migrations, models + + +class Migration(migrations.Migration): + + dependencies = [ + ('archaeological_context_records', '0045_auto_20190527_1645'), + ] + + operations = [ + migrations.AddField( + model_name='contextrecord', + name='cached_related_context_records', + field=models.TextField(blank=True, help_text='Generated automatically - do not edit', null=True, verbose_name='Cached related context records'), + ), + migrations.AddField( + model_name='historicalcontextrecord', + name='cached_related_context_records', + field=models.TextField(blank=True, help_text='Generated automatically - do not edit', null=True, verbose_name='Cached related context records'), + ), + ] |