By default the option to concat CP with street name must be False

This commit is contained in:
Christophe Boulanger 2018-03-01 13:18:33 +01:00
parent 12043d6569
commit 7b51559238
1 changed files with 19 additions and 0 deletions

View File

@ -0,0 +1,19 @@
# -*- coding: utf-8 -*-
from __future__ import unicode_literals
from django.db import migrations, models
class Migration(migrations.Migration):
dependencies = [
('passerelle_imio_liege_lisrue', '0006_auto_20180301_0951'),
]
operations = [
migrations.AlterField(
model_name='imioliegelisrue',
name='street_with_postal_code',
field=models.BooleanField(default=False, verbose_name='Return street with postal code'),
),
]