1234567891011121314151617181920 |
- # -*- coding: utf-8 -*-
- # Generated by Django 1.10.5 on 2017-02-06 22:58
- from __future__ import unicode_literals
- from django.db import migrations, models
- class Migration(migrations.Migration):
- dependencies = [
- ('services', '0006_auto_20170111_1053'),
- ]
- operations = [
- migrations.AddField(
- model_name='service',
- name='label',
- field=models.CharField(blank=True, default='', max_length=128),
- ),
- ]
|