forked from netbox-community/netbox
-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Fixes netbox-community#268: Added support for full 32-bit ASN space
- Loading branch information
1 parent
139ddec
commit a2cfa7c
Showing
5 changed files
with
55 additions
and
3 deletions.
There are no files selected for viewing
21 changes: 21 additions & 0 deletions
21
netbox/circuits/migrations/0003_provider_32bit_asn_support.py
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,21 @@ | ||
# -*- coding: utf-8 -*- | ||
# Generated by Django 1.9.7 on 2016-07-13 19:24 | ||
from __future__ import unicode_literals | ||
|
||
import dcim.fields | ||
from django.db import migrations | ||
|
||
|
||
class Migration(migrations.Migration): | ||
|
||
dependencies = [ | ||
('circuits', '0002_auto_20160622_1821'), | ||
] | ||
|
||
operations = [ | ||
migrations.AlterField( | ||
model_name='provider', | ||
name='asn', | ||
field=dcim.fields.ASNField(blank=True, null=True, verbose_name=b'ASN'), | ||
), | ||
] |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,21 @@ | ||
# -*- coding: utf-8 -*- | ||
# Generated by Django 1.9.7 on 2016-07-13 19:24 | ||
from __future__ import unicode_literals | ||
|
||
import dcim.fields | ||
from django.db import migrations | ||
|
||
|
||
class Migration(migrations.Migration): | ||
|
||
dependencies = [ | ||
('dcim', '0008_device_remove_primary_ip'), | ||
] | ||
|
||
operations = [ | ||
migrations.AlterField( | ||
model_name='site', | ||
name='asn', | ||
field=dcim.fields.ASNField(blank=True, null=True, verbose_name=b'ASN'), | ||
), | ||
] |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters