Add migration
This commit is contained in:
parent
f97b805f76
commit
417bb68ffa
1 changed files with 18 additions and 0 deletions
18
app/migrations/0015_rename_country_lookup_person_country.py
Normal file
18
app/migrations/0015_rename_country_lookup_person_country.py
Normal 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',
|
||||||
|
),
|
||||||
|
]
|
Loading…
Reference in a new issue