-
Notifications
You must be signed in to change notification settings - Fork 14
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* Clarifying the Network Type field #1357 Only indicate availability of DC voltage for facilities #1341 changelog linting * fix migrations hierarchy * Modernize (#96) * update deps, run pre-commit * add py38 back, adjust tox --------- Co-authored-by: 20C <[email protected]> Co-authored-by: Matt Griswold <[email protected]>
- Loading branch information
1 parent
3c1dffa
commit 118d41f
Showing
20 changed files
with
663 additions
and
635 deletions.
There are no files selected for viewing
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
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
Large diffs are not rendered by default.
Oops, something went wrong.
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
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
5 changes: 0 additions & 5 deletions
5
src/django_peeringdb/migrations/0012_change_network_prefixes_and_info_type.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
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
2 changes: 0 additions & 2 deletions
2
src/django_peeringdb/migrations/0018_add_region_continent_field.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
2 changes: 0 additions & 2 deletions
2
src/django_peeringdb/migrations/0019_ix_add_sales_phone_email.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
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
35 changes: 35 additions & 0 deletions
35
src/django_peeringdb/migrations/0028_auto_20240109_1157.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,35 @@ | ||
# Generated by Django 3.2.7 on 2024-01-09 11:57 | ||
|
||
from django.db import migrations | ||
|
||
import django_peeringdb.fields | ||
|
||
|
||
class Migration(migrations.Migration): | ||
dependencies = [ | ||
("django_peeringdb", "0027_auto_20230804_1414"), | ||
] | ||
|
||
operations = [ | ||
migrations.AddField( | ||
model_name="network", | ||
name="info_types", | ||
field=django_peeringdb.fields.MultipleChoiceField( | ||
blank=True, | ||
choices=[ | ||
("NSP", "NSP"), | ||
("Content", "Content"), | ||
("Cable/DSL/ISP", "Cable/DSL/ISP"), | ||
("Enterprise", "Enterprise"), | ||
("Educational/Research", "Educational/Research"), | ||
("Non-Profit", "Non-Profit"), | ||
("Route Server", "Route Server"), | ||
("Network Services", "Network Services"), | ||
("Route Collector", "Route Collector"), | ||
("Government", "Government"), | ||
], | ||
max_length=255, | ||
verbose_name="Network Types", | ||
), | ||
), | ||
] |
30 changes: 30 additions & 0 deletions
30
src/django_peeringdb/migrations/0029_auto_20240109_1246.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,30 @@ | ||
# Generated by Django 3.2.7 on 2024-01-09 12:46 | ||
|
||
from django.db import migrations | ||
|
||
import django_peeringdb.fields | ||
|
||
|
||
class Migration(migrations.Migration): | ||
dependencies = [ | ||
("django_peeringdb", "0028_auto_20240109_1157"), | ||
] | ||
|
||
operations = [ | ||
migrations.AlterField( | ||
model_name="facility", | ||
name="available_voltage_services", | ||
field=django_peeringdb.fields.MultipleChoiceField( | ||
blank=True, | ||
choices=[ | ||
("48 VDC", "48 VDC"), | ||
("400 VAC", "400 VAC"), | ||
("480 VAC", "480 VAC"), | ||
], | ||
help_text="The alternating current voltage available to users of the facility either directly from the landlord or delivered by the utility separately.", | ||
max_length=255, | ||
null=True, | ||
verbose_name="Available Voltage Services", | ||
), | ||
), | ||
] |
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