我希望获得Users and Options
等表格的初始数据。
对于旧的django来说,灯具是非常简单的方法,但现在django说要以迁移方式进行,我还不完全理解。
现在我的迁移文件夹中已有10次迁移。我很困惑我在哪里保留我的初始数据迁移文件。
如果我将其设置为0011_initial_data
并将其放入其他迁移中,那么它将在漫长的迁移列表中丢失,并且新用户不易察觉它是什么。如果有人挤压迁移,那么没有人会知道那里是否有一些数据。
我想在一些名为数据迁移的文件夹中将其分开。我怎么能这样做
这是他们网站的示例代码。但是我在哪里放置它以免混淆
# -*- coding: utf-8 -*-
from django.db import models, migrations
def combine_names(apps, schema_editor):
# We can't import the Person model directly as it may be a newer
# version than this migration expects. We use the historical version.
Person = apps.get_model("yourappname", "Person")
for person in Person.objects.all():
person.name = "%s %s" % (person.first_name, person.last_name)
person.save()
class Migration(migrations.Migration):
dependencies = [
('yourappname', '0001_initial'),
]
operations = [
migrations.RunPython(combine_names),
]
答案 0 :(得分:4)
就像@knbk所说的那样,你无法将迁移带出它的位置。但是,如果您希望在其他迁移之间进行迁移,但将夹具数据放在单独的文件中,则可以执行以下操作:
from django.core.management import call_command
from django.db import models, migrations
class Migration(migrations.Migration):
def load_data(apps, schema_editor):
call_command("loaddata", "initial_data.json")
dependencies = [
('other_app', '0001_initial'),
]
operations = [
migrations.RunPython(load_data),
]
Django会以同样的方式查找fixture文件,并在迁移数据库时加载数据。