# -*- 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', ), ]