diff options
author | Étienne Loks <etienne.loks@iggdrasil.net> | 2017-11-10 17:20:01 +0100 |
---|---|---|
committer | Étienne Loks <etienne.loks@iggdrasil.net> | 2017-11-10 17:20:01 +0100 |
commit | 2e4847a414f44600dc25fd1152c1bcff173f76de (patch) | |
tree | 5af06729ecc00c740f127d5fd57d1c383efb4e90 /archaeological_context_records/migrations | |
parent | 6f32d8713096f85029c213954816ea50d06f9643 (diff) | |
download | Ishtar-2e4847a414f44600dc25fd1152c1bcff173f76de.tar.bz2 Ishtar-2e4847a414f44600dc25fd1152c1bcff173f76de.zip |
Models: generic images with m2m relations with main items
Diffstat (limited to 'archaeological_context_records/migrations')
-rw-r--r-- | archaeological_context_records/migrations/0014_contextrecord_images.py | 21 |
1 files changed, 21 insertions, 0 deletions
diff --git a/archaeological_context_records/migrations/0014_contextrecord_images.py b/archaeological_context_records/migrations/0014_contextrecord_images.py new file mode 100644 index 000000000..641309c97 --- /dev/null +++ b/archaeological_context_records/migrations/0014_contextrecord_images.py @@ -0,0 +1,21 @@ +# -*- coding: utf-8 -*- +# Generated by Django 1.11 on 2017-11-10 17:17 +from __future__ import unicode_literals + +from django.db import migrations, models + + +class Migration(migrations.Migration): + + dependencies = [ + ('ishtar_common', '0021_auto_20171110_1717'), + ('archaeological_context_records', '0013_auto_20171026_1827'), + ] + + operations = [ + migrations.AddField( + model_name='contextrecord', + name='images', + field=models.ManyToManyField(blank=True, to='ishtar_common.IshtarImage', verbose_name='Images'), + ), + ] |