-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
7 changed files
with
143 additions
and
23 deletions.
There are no files selected for viewing
29 changes: 29 additions & 0 deletions
29
ip/migrations/0003_alter_ip_ip_address_alter_ip_use_case_and_more.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,29 @@ | ||
# Generated by Django 5.0.3 on 2024-03-31 16:12 | ||
|
||
import dsbd.models | ||
from django.db import migrations, models | ||
|
||
|
||
class Migration(migrations.Migration): | ||
|
||
dependencies = [ | ||
('ip', '0002_initial'), | ||
] | ||
|
||
operations = [ | ||
migrations.AlterField( | ||
model_name='ip', | ||
name='ip_address', | ||
field=models.GenericIPAddressField(blank=True, null=True, unique=True, verbose_name='IP Address'), | ||
), | ||
migrations.AlterField( | ||
model_name='ip', | ||
name='use_case', | ||
field=dsbd.models.MediumTextField(blank=True, default='', verbose_name='使用用途'), | ||
), | ||
migrations.AlterField( | ||
model_name='jpnicuser', | ||
name='fax', | ||
field=models.CharField(blank=True, default='', max_length=30, verbose_name='fax'), | ||
), | ||
] |
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
60 changes: 60 additions & 0 deletions
60
service/migrations/0002_alter_connection_connection_comment_and_more.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,60 @@ | ||
# Generated by Django 5.0.3 on 2024-03-31 16:31 | ||
|
||
import django.db.models.deletion | ||
from django.db import migrations, models | ||
|
||
|
||
class Migration(migrations.Migration): | ||
|
||
dependencies = [ | ||
('router', '0001_initial'), | ||
('service', '0001_initial'), | ||
] | ||
|
||
operations = [ | ||
migrations.AlterField( | ||
model_name='connection', | ||
name='connection_comment', | ||
field=models.CharField(blank=True, default='', max_length=255, verbose_name='接続情報コメント'), | ||
), | ||
migrations.AlterField( | ||
model_name='connection', | ||
name='connection_number', | ||
field=models.IntegerField(default=1, verbose_name='接続番号'), | ||
), | ||
migrations.AlterField( | ||
model_name='connection', | ||
name='connection_type', | ||
field=models.CharField(choices=[('EIP', 'EtherIP Tunnel'), ('GRE', 'GRE Tunnel'), ('IPT', 'IPT Tunnel'), ('CC0', 'Cross Connect'), ('ETC', 'ETC')], default='EIP', max_length=255, verbose_name='接続タイプ'), | ||
), | ||
migrations.AlterField( | ||
model_name='connection', | ||
name='ipv4_route', | ||
field=models.CharField(choices=[('none', 'None'), ('full_route', 'Full Route'), ('default_route', 'Default Route'), ('full_route', 'Etc')], default='full_route', max_length=255, verbose_name='IPv4 Route'), | ||
), | ||
migrations.AlterField( | ||
model_name='connection', | ||
name='ipv6_route', | ||
field=models.CharField(choices=[('none', 'None'), ('full_route', 'Full Route'), ('default_route', 'Default Route'), ('full_route', 'Etc')], default='full_route', max_length=255, verbose_name='IPv6 Route'), | ||
), | ||
migrations.AlterField( | ||
model_name='connection', | ||
name='tunnel_ip', | ||
field=models.ForeignKey(blank=True, max_length=255, null=True, on_delete=django.db.models.deletion.CASCADE, related_name='ConnectionTunnelIP', to='router.tunnelip'), | ||
), | ||
migrations.AlterField( | ||
model_name='service', | ||
name='service_comment', | ||
field=models.CharField(blank=True, default='', max_length=255, verbose_name='サービス情報コメント'), | ||
), | ||
migrations.AlterField( | ||
model_name='service', | ||
name='service_number', | ||
field=models.IntegerField(default=1, verbose_name='サービス番号'), | ||
), | ||
migrations.AlterField( | ||
model_name='service', | ||
name='service_type', | ||
field=models.CharField(choices=[('2000', 'L2'), ('3S00', 'L3 Static'), ('3B00', 'L3 BGP'), ('IP3B', 'トランジット提供'), ('CL20', 'コロケーションサービス(L2)'), ('CL3S', 'コロケーションサービス(L3 Static)'), ('CL3B', 'コロケーションサービス(L3 BGP)'), ('ET00', 'その他')], default='CL3B', max_length=255, verbose_name='サービスタイプ'), | ||
), | ||
] |
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