1234567891011121314151617181920 |
- # -*- coding: utf-8 -*-
- # Generated by Django 1.10 on 2017-01-11 09:53
- from __future__ import unicode_literals
- from django.db import migrations, models
- class Migration(migrations.Migration):
- dependencies = [
- ('services', '0005_auto_20170102_0003'),
- ]
- operations = [
- migrations.AlterField(
- model_name='servicetype',
- name='name',
- field=models.CharField(max_length=64, unique=True, verbose_name='Nom'),
- ),
- ]
|