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

Closes #2805: Allow null route distinguisher for VRFs

This commit is contained in:
Jeremy Stretch
2019-01-31 13:47:24 -05:00
parent 613e8f05c2
commit bcfa760cf9
5 changed files with 40 additions and 12 deletions

View File

@@ -29,6 +29,8 @@ class VRF(ChangeLoggedModel, CustomFieldModel):
rd = models.CharField(
max_length=21,
unique=True,
blank=True,
null=True,
verbose_name='Route distinguisher'
)
tenant = models.ForeignKey(