1
0
mirror of https://github.com/netbox-community/netbox.git synced 2024-05-10 07:54:54 +00:00

Fix assigned_object field

This commit is contained in:
Jeremy Stretch
2020-06-22 13:50:14 -04:00
parent 6cb31a274f
commit e76b1f1daa
2 changed files with 7 additions and 5 deletions

View File

@@ -23,6 +23,11 @@ class Migration(migrations.Migration):
old_name='interface',
new_name='assigned_object_id',
),
migrations.AlterField(
model_name='ipaddress',
name='assigned_object_id',
field=models.PositiveIntegerField(blank=True, null=True),
),
migrations.AddField(
model_name='ipaddress',
name='assigned_object_type',