Add ruby files write Add models migrations REMOVE UNIQUE FROM location.country.code Add function to save correct original objects from old database
19 lines
408 B
Python
19 lines
408 B
Python
# Generated by Django 2.2.7 on 2019-11-18 03:26
|
|
|
|
from django.db import migrations, models
|
|
|
|
|
|
class Migration(migrations.Migration):
|
|
|
|
dependencies = [
|
|
('location', '0032_auto_20191117_2300'),
|
|
]
|
|
|
|
operations = [
|
|
migrations.AlterField(
|
|
model_name='country',
|
|
name='code',
|
|
field=models.CharField(max_length=255, verbose_name='Code'),
|
|
),
|
|
]
|