diff --git a/postgresqleu/countries/fixtures/initial_data.xml b/postgresqleu/countries/fixtures/initial_data.xml index 029c5566..e794becd 100644 --- a/postgresqleu/countries/fixtures/initial_data.xml +++ b/postgresqleu/countries/fixtures/initial_data.xml @@ -775,9 +775,9 @@ 446 - MACEDONIA, THE FORMER YUGOSLAV REPUBLIC OF - The former Yugoslav Republic of Macedonia - MKD + NORTH MACEDONIA + North Macedonia + MKD 807 diff --git a/postgresqleu/countries/migrations/0003_north_macedonia.py b/postgresqleu/countries/migrations/0003_north_macedonia.py new file mode 100644 index 00000000..5520991b --- /dev/null +++ b/postgresqleu/countries/migrations/0003_north_macedonia.py @@ -0,0 +1,14 @@ +# Generated by Django 4.2.11 on 2024-10-08 11:59 + +from django.db import migrations + + +class Migration(migrations.Migration): + + dependencies = [ + ('countries', '0002_europecountry'), + ] + + operations = [ + migrations.RunSQL("UPDATE country SET name='NORTH MACEDONIA', printable_name='North Macedonia' WHERE iso='MK'"), + ]