2018-10-11 17:52:07 +00:00
|
|
|
# -*- coding: utf-8 -*-
|
|
|
|
# Generated by Django 1.10.7 on 2018-10-11 17:30
|
|
|
|
from __future__ import unicode_literals
|
|
|
|
|
|
|
|
from django.db import migrations, models
|
|
|
|
|
|
|
|
|
|
|
|
class Migration(migrations.Migration):
|
|
|
|
|
2019-11-04 16:55:03 +00:00
|
|
|
dependencies = [("topologie", "0065_auto_20180927_1836")]
|
2018-10-11 17:52:07 +00:00
|
|
|
|
|
|
|
operations = [
|
|
|
|
migrations.AddField(
|
2019-11-04 16:55:03 +00:00
|
|
|
model_name="modelswitch",
|
|
|
|
name="commercial_name",
|
2018-10-11 17:52:07 +00:00
|
|
|
field=models.CharField(blank=True, max_length=255, null=True),
|
2019-11-04 16:55:03 +00:00
|
|
|
)
|
2018-10-11 17:52:07 +00:00
|
|
|
]
|