Information obtained from the api of Modernization and Digital Government Unit
https://apis.digital.gob.cl/dpa
https://pypi.python.org/pypi/django-dpa-chile
Force remove foreign key
DROP TABLES django_dpa_region
DROP TABLES django_dpa_provincia
DROP TABLES django_dpa_comuna
install django-dpa-chile using pip
pip install django-dpa-chile
add dpa_chile to INSTALLED_APPS
# ...
INSTALLED_APPS =[
...
'dpa_chile',
]
# ...
python manage.py migrate django_dpa_chile
python manage.py populate_dpa_chile
from django_dpa_chile.models import Region, Provincia, Comuna