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 | 096bf9a3dcee0d72dba4c6c9f3802a02ac6d4d12 (patch) | |
| tree | e19f1dfa26f4547001189721a89f0a5cbe036c57 /archaeological_context_records/migrations | |
| parent | 7587c316830be2c2866b2feeec4b44d081847338 (diff) | |
| download | Ishtar-096bf9a3dcee0d72dba4c6c9f3802a02ac6d4d12.tar.bz2 Ishtar-096bf9a3dcee0d72dba4c6c9f3802a02ac6d4d12.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'), + ), + ] |
