mirror of
https://github.com/Southampton-RSG/breccia-mapper.git
synced 2026-03-03 11:27:09 +00:00
25 lines
666 B
Python
25 lines
666 B
Python
# Generated by Django 2.2.10 on 2020-02-24 08:16
|
|
|
|
from django.db import migrations
|
|
import django_countries.fields
|
|
|
|
|
|
class Migration(migrations.Migration):
|
|
|
|
dependencies = [
|
|
('people', '0009_add_first_person_fields'),
|
|
]
|
|
|
|
operations = [
|
|
migrations.AddField(
|
|
model_name='person',
|
|
name='country_of_residence',
|
|
field=django_countries.fields.CountryField(blank=True, max_length=2, null=True),
|
|
),
|
|
migrations.AddField(
|
|
model_name='person',
|
|
name='nationality',
|
|
field=django_countries.fields.CountryField(blank=True, max_length=2, null=True),
|
|
),
|
|
]
|