1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
|
# -*- coding: utf-8 -*-
# Generated by Django 1.11 on 2017-10-30 17:08
from __future__ import unicode_literals
from django.db import migrations, models
import django.db.models.deletion
class Migration(migrations.Migration):
dependencies = [
('ishtar_common', '0019_auto_20171026_1827'),
]
operations = [
migrations.AlterField(
model_name='town',
name='departement',
field=models.ForeignKey(blank=True, null=True, on_delete=django.db.models.deletion.CASCADE, to='ishtar_common.Department', verbose_name='Department'),
),
migrations.AlterField(
model_name='town',
name='numero_insee',
field=models.CharField(max_length=120, verbose_name='Code commune (num\xe9ro INSEE)'),
),
]
|