19 lines
461 B
Python
19 lines
461 B
Python
# Generated by Django 2.2b1 on 2019-02-13 11:43
|
|
|
|
from django.db import migrations, models
|
|
|
|
|
|
class Migration(migrations.Migration):
|
|
|
|
dependencies = [
|
|
('fiches', '0001_initial'),
|
|
]
|
|
|
|
operations = [
|
|
migrations.AddField(
|
|
model_name='department',
|
|
name='name',
|
|
field=models.CharField(default=' ', max_length=1023, verbose_name='nom du département'),
|
|
preserve_default=False,
|
|
),
|
|
]
|