fix: correct missed replumbing of iprdisclosurebase
This commit is contained in:
parent
72d44d56c4
commit
be77cc9226
|
@ -2,7 +2,7 @@
|
|||
|
||||
from django.db import migrations
|
||||
import django.db.models.deletion
|
||||
from django.db.models import F, Subquery, OuterRef
|
||||
from django.db.models import F, Subquery, OuterRef, ManyToManyField
|
||||
import ietf.utils.models
|
||||
|
||||
def forward(apps, schema_editor):
|
||||
|
@ -67,6 +67,11 @@ class Migration(migrations.Migration):
|
|||
db_index=True,
|
||||
),
|
||||
),
|
||||
migrations.AlterField(
|
||||
model_name='iprdisclosurebase',
|
||||
name='docs',
|
||||
field=ManyToManyField(through='ipr.IprDocRel', to='doc.Document'),
|
||||
),
|
||||
migrations.RemoveField(
|
||||
model_name="iprdocrel",
|
||||
name="deprecated_document",
|
||||
|
|
Loading…
Reference in a new issue