mirror of
https://github.com/django/django.git
synced 2025-08-02 18:13:02 +00:00
Fixed #22970: Incorrect dependencies for existing migrated apps
This commit is contained in:
parent
b7455b52a0
commit
008bff92b7
4 changed files with 75 additions and 7 deletions
|
@ -16,8 +16,15 @@ class Migration(migrations.Migration):
|
|||
fields=[
|
||||
('id', models.AutoField(verbose_name='ID', serialize=False, auto_created=True, primary_key=True)),
|
||||
],
|
||||
options={
|
||||
},
|
||||
options={},
|
||||
bases=(models.Model,),
|
||||
),
|
||||
migrations.CreateModel(
|
||||
name='UnmigratedModel',
|
||||
fields=[
|
||||
('id', models.AutoField(verbose_name='ID', serialize=False, auto_created=True, primary_key=True)),
|
||||
],
|
||||
options={},
|
||||
bases=(models.Model,),
|
||||
),
|
||||
migrations.DeleteModel(
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue