You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
31 lines
847 B
31 lines
847 B
# -*- coding: utf-8 -*-
|
|
# Generated by Django 1.9.6 on 2016-06-15 13:25
|
|
from __future__ import unicode_literals
|
|
|
|
from django.db import migrations, models
|
|
|
|
|
|
class Migration(migrations.Migration):
|
|
|
|
dependencies = [
|
|
('common', '0001_initial'),
|
|
]
|
|
|
|
operations = [
|
|
migrations.RemoveField(
|
|
model_name='city',
|
|
name='country',
|
|
),
|
|
migrations.AlterField(
|
|
model_name='location',
|
|
name='type',
|
|
field=models.CharField(choices=[('_root', 'Корень'), ('country', 'Страна'), ('region', 'Регион'), ('town', 'Город')], default=None, max_length=20),
|
|
preserve_default=False,
|
|
),
|
|
migrations.DeleteModel(
|
|
name='City',
|
|
),
|
|
migrations.DeleteModel(
|
|
name='Country',
|
|
),
|
|
]
|
|
|