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

Fix schema deconstruction for NaturalOrderingField

This commit is contained in:
Jeremy Stretch
2020-06-22 15:49:09 -04:00
parent eb8c0539c5
commit b5d53fa850
5 changed files with 21 additions and 21 deletions

View File

@@ -68,6 +68,6 @@ class NaturalOrderingField(models.CharField):
return (
self.name,
'utilities.fields.NaturalOrderingField',
['target_field'],
[self.target_field],
kwargs,
)