diff options
author | Étienne Loks <etienne.loks@iggdrasil.net> | 2019-06-28 14:50:12 +0200 |
---|---|---|
committer | Étienne Loks <etienne.loks@iggdrasil.net> | 2019-06-28 14:50:12 +0200 |
commit | 3eee5bac1748181d41d7abc32da1570a1fce6645 (patch) | |
tree | 2f2f39dfb5c185d8e8857b2f87bbeff6065bb321 /archaeological_context_records/migrations | |
parent | f1366d27a7ccfcd2745aa0854f217941f6b2198c (diff) | |
download | Ishtar-3eee5bac1748181d41d7abc32da1570a1fce6645.tar.bz2 Ishtar-3eee5bac1748181d41d7abc32da1570a1fce6645.zip |
Better management of cascade updates
Diffstat (limited to 'archaeological_context_records/migrations')
-rw-r--r-- | archaeological_context_records/migrations/0047_auto_20190628_1257.py | 25 |
1 files changed, 25 insertions, 0 deletions
diff --git a/archaeological_context_records/migrations/0047_auto_20190628_1257.py b/archaeological_context_records/migrations/0047_auto_20190628_1257.py new file mode 100644 index 000000000..913eab154 --- /dev/null +++ b/archaeological_context_records/migrations/0047_auto_20190628_1257.py @@ -0,0 +1,25 @@ +# -*- coding: utf-8 -*- +# Generated by Django 1.11.18 on 2019-06-28 12:57 +from __future__ import unicode_literals + +from django.db import migrations, models + + +class Migration(migrations.Migration): + + dependencies = [ + ('archaeological_context_records', '0046_auto_20190528_1048'), + ] + + operations = [ + migrations.AddField( + model_name='contextrecord', + name='need_update', + field=models.BooleanField(default=False, verbose_name='Need update'), + ), + migrations.AddField( + model_name='historicalcontextrecord', + name='need_update', + field=models.BooleanField(default=False, verbose_name='Need update'), + ), + ] |