Kaydet (Commit) c8b3fbe2 authored tarafından Shai Berger's avatar Shai Berger

Refs #25896 -- Fixed migration test failure on Oracle

The test creates and deletes a model in the same migration, and the model
had an AutoField. On Oracle, AutoField's are set up using deferred SQL, which
in this case was trying to modify a table after it had dbeen removed.
üst 179fbab7
......@@ -1867,7 +1867,10 @@ class OperationTests(OperationTestBase):
),
migrations.CreateModel(
"ILoveMorePonies",
[("id", models.AutoField(primary_key=True))],
# We use IntegerField and not AutoField because
# the model is going to be deleted immediately
# and with an AutoField this fails on Oracle
[("id", models.IntegerField(primary_key=True))],
options={"db_table": "ilovemoreponies"},
),
migrations.DeleteModel("ILoveMorePonies"),
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment