[1.7.x] Fixed #23296 -- Fixed RunPython code sample in Migration Operations.
Backport of 7ca665c5f5
from master
This commit is contained in:
parent
41cf159c0a
commit
28d9753324
|
@ -219,8 +219,10 @@ model::
|
|||
# if we directly import it, it'll be the wrong version
|
||||
Country = apps.get_model("myapp", "Country")
|
||||
db_alias = schema_editor.connection.alias
|
||||
Country.objects.create(name="USA", code="us", using=db_alias)
|
||||
Country.objects.create(name="France", code="fr", using=db_alias)
|
||||
Country.objects.using(db_alias).bulk_create([
|
||||
Country(name="USA", code="us"),
|
||||
Country(name="France", code="fr"),
|
||||
])
|
||||
|
||||
class Migration(migrations.Migration):
|
||||
|
||||
|
|
Loading…
Reference in New Issue