0

我在生产中的数据库中有一个现有的国家类,但想使用 Django_Countries 模型来更新我使用的所有国家。

这是现有的模型。它允许用户创建一个国家并上传他们国家的国旗

class Country(models.Model):
    name = models.CharField(_("Name"))
    icon = models.ImageField(_("Icon"),upload_to=os.path.join('images', 'flags'))

我想删除用户创建国家/地区的选项,只需选择一个国家/地区。

我不能真正改变现有的模型,因为它有很多依赖项。我只想将名称和标志添加到现有模型中。

4

1 回答 1

0

Finally ended up just doing a dump of the countries in to a json file and writing a migration to update the database.

def forwards(apps, schema_editor):
    Country = apps.get_model('country', 'Country')
    Region = apps.get_model('country', 'Region')

    Region.objects.filter(id=45).delete()

    with codecs.open(os.path.join(os.path.dirname(__file__), 'countries.json'), encoding='utf-8') as cfile:
    data = json.load(cfile)

    for country, regions in data.items():
        country, created = Country.objects.get_or_create(name=country)


class Migration(migrations.Migration):
    dependencies = [
    ('country', 'previous_migration'),
]

operations = [
    migrations.RunPython(forwards),
]
于 2016-08-16T09:28:48.410 回答