diff options
author | Étienne Loks <etienne.loks@iggdrasil.net> | 2017-10-26 18:29:00 +0200 |
---|---|---|
committer | Étienne Loks <etienne.loks@iggdrasil.net> | 2017-10-26 18:29:00 +0200 |
commit | 5fb235649207a15f54c69f3ac9c2f0659fc2436d (patch) | |
tree | 0b6a033a9446f485bf825d54d26518adc2e206e4 /archaeological_finds | |
parent | 088239b8fbe0bd68edd66123549b064189fe5678 (diff) | |
download | Ishtar-5fb235649207a15f54c69f3ac9c2f0659fc2436d.tar.bz2 Ishtar-5fb235649207a15f54c69f3ac9c2f0659fc2436d.zip |
Towns: remove "canton" add limits - change meta for data
Diffstat (limited to 'archaeological_finds')
-rw-r--r-- | archaeological_finds/migrations/0013_auto_20171026_1828.py | 61 |
1 files changed, 61 insertions, 0 deletions
diff --git a/archaeological_finds/migrations/0013_auto_20171026_1828.py b/archaeological_finds/migrations/0013_auto_20171026_1828.py new file mode 100644 index 000000000..e11bdc60b --- /dev/null +++ b/archaeological_finds/migrations/0013_auto_20171026_1828.py @@ -0,0 +1,61 @@ +# -*- coding: utf-8 -*- +# Generated by Django 1.11 on 2017-10-26 18:28 +from __future__ import unicode_literals + +import django.contrib.postgres.fields.jsonb +from django.db import migrations + + +class Migration(migrations.Migration): + + dependencies = [ + ('archaeological_finds', '0012_auto_20171017_1840'), + ] + + operations = [ + migrations.AlterField( + model_name='basefind', + name='data', + field=django.contrib.postgres.fields.jsonb.JSONField(blank=True, db_index=True, default={}), + ), + migrations.AlterField( + model_name='find', + name='data', + field=django.contrib.postgres.fields.jsonb.JSONField(blank=True, db_index=True, default={}), + ), + migrations.AlterField( + model_name='historicalbasefind', + name='data', + field=django.contrib.postgres.fields.jsonb.JSONField(blank=True, db_index=True, default={}), + ), + migrations.AlterField( + model_name='historicalfind', + name='data', + field=django.contrib.postgres.fields.jsonb.JSONField(blank=True, db_index=True, default={}), + ), + migrations.AlterField( + model_name='historicaltreatment', + name='data', + field=django.contrib.postgres.fields.jsonb.JSONField(blank=True, db_index=True, default={}), + ), + migrations.AlterField( + model_name='historicaltreatmentfile', + name='data', + field=django.contrib.postgres.fields.jsonb.JSONField(blank=True, db_index=True, default={}), + ), + migrations.AlterField( + model_name='property', + name='data', + field=django.contrib.postgres.fields.jsonb.JSONField(blank=True, db_index=True, default={}), + ), + migrations.AlterField( + model_name='treatment', + name='data', + field=django.contrib.postgres.fields.jsonb.JSONField(blank=True, db_index=True, default={}), + ), + migrations.AlterField( + model_name='treatmentfile', + name='data', + field=django.contrib.postgres.fields.jsonb.JSONField(blank=True, db_index=True, default={}), + ), + ] |