diff options
author | Étienne Loks <etienne.loks@iggdrasil.net> | 2018-09-26 10:24:33 +0200 |
---|---|---|
committer | Étienne Loks <etienne.loks@iggdrasil.net> | 2018-09-26 10:24:33 +0200 |
commit | 9a95a0d1765d9fa17d3149d7f875d129b6edc542 (patch) | |
tree | e924e158e3285c9a73510ab0743fe7901e360467 /ishtar_common/migrations | |
parent | fa27623e72e78058d6d18161f3ebeb34a6020d5e (diff) | |
download | Ishtar-9a95a0d1765d9fa17d3149d7f875d129b6edc542.tar.bz2 Ishtar-9a95a0d1765d9fa17d3149d7f875d129b6edc542.zip |
Area: add a reference field - Town: add 3 digit for num INSEE label
Diffstat (limited to 'ishtar_common/migrations')
-rw-r--r-- | ishtar_common/migrations/0071_auto_20180926_1023.py | 25 |
1 files changed, 25 insertions, 0 deletions
diff --git a/ishtar_common/migrations/0071_auto_20180926_1023.py b/ishtar_common/migrations/0071_auto_20180926_1023.py new file mode 100644 index 000000000..c508981ca --- /dev/null +++ b/ishtar_common/migrations/0071_auto_20180926_1023.py @@ -0,0 +1,25 @@ +# -*- coding: utf-8 -*- +# Generated by Django 1.11.10 on 2018-09-26 10:23 +from __future__ import unicode_literals + +from django.db import migrations, models + + +class Migration(migrations.Migration): + + dependencies = [ + ('ishtar_common', '0070_profiletypesummary'), + ] + + operations = [ + migrations.AddField( + model_name='area', + name='reference', + field=models.CharField(blank=True, max_length=200, null=True, verbose_name='Reference'), + ), + migrations.AlterField( + model_name='jsondatafield', + name='value_type', + field=models.CharField(choices=[(b'T', 'Text'), (b'LT', 'Long text'), (b'I', 'Integer'), (b'B', 'Boolean'), (b'F', 'Float'), (b'D', 'Date'), (b'C', 'Choices')], default=b'T', max_length=10, verbose_name='Type'), + ), + ] |