Add migration

This commit is contained in:
PCoder 2021-11-22 13:01:15 +05:30
parent f97b805f76
commit 417bb68ffa
1 changed files with 18 additions and 0 deletions

View File

@ -0,0 +1,18 @@
# Generated by Django 3.2.5 on 2021-11-22 07:28
from django.db import migrations
class Migration(migrations.Migration):
dependencies = [
('app', '0014_alter_person_country_lookup'),
]
operations = [
migrations.RenameField(
model_name='person',
old_name='country_lookup',
new_name='country',
),
]