def forwards()

in nucleus/rna/migrations/0009_data_bootstrap_countries_and_codes.py [0:0]


def forwards(apps, schema_editor):
    Country = apps.get_model("rna.Country")
    for name, code in iso_3166_1_alpha_2_country_codes:
        Country.objects.create(name=name, code=code, modified=now())