diff options
author | Étienne Loks <etienne.loks@iggdrasil.net> | 2019-05-28 11:31:04 +0200 |
---|---|---|
committer | Étienne Loks <etienne.loks@iggdrasil.net> | 2019-06-17 13:21:28 +0200 |
commit | 764da8cb517be0224db8da4f881f569997146512 (patch) | |
tree | e19f1dfa26f4547001189721a89f0a5cbe036c57 /archaeological_context_records/migrations | |
parent | dc2ecdd813af9a69fc95170c14b2a1acf8ecb111 (diff) | |
download | Ishtar-764da8cb517be0224db8da4f881f569997146512.tar.bz2 Ishtar-764da8cb517be0224db8da4f881f569997146512.zip |
Fix cache generation for finds and context records
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'), + ), + ] |