From 096bf9a3dcee0d72dba4c6c9f3802a02ac6d4d12 Mon Sep 17 00:00:00 2001 From: Étienne Loks Date: Tue, 28 May 2019 11:31:04 +0200 Subject: Fix cache generation for finds and context records --- .../migrations/0046_auto_20190528_1048.py | 25 ++++++++++++++++++++++ 1 file changed, 25 insertions(+) create mode 100644 archaeological_context_records/migrations/0046_auto_20190528_1048.py (limited to 'archaeological_context_records/migrations') 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'), + ), + ] -- cgit v1.2.3