mirror of
https://github.com/peeringdb/peeringdb.git
synced 2024-05-11 05:55:09 +00:00
* fix next redirect when using U2F 2FA auth (#1191) * Added self identifier to API * fix migrations hierarchy after merging in previous support branch * campus object Co-authored-by: Stefan Pratter <stefan@20c.com> * fix out of bound error message add city / country to campus view * fix tests * relock poetry * linting * linting * fix docs regen * regen docs * linting * refactor self entity view to support carrier and campus object types and also make it easier to support additional object types in the future * remove debug message --------- Co-authored-by: Gajanan Patil <dipaksavaliya.python@gmail.com>
71 lines
3.0 KiB
Python
71 lines
3.0 KiB
Python
# Generated by Django 2.2.16 on 2020-11-18 21:00
|
|
|
|
from django.db import migrations, models
|
|
|
|
|
|
class Migration(migrations.Migration):
|
|
dependencies = [
|
|
("peeringdb_server", "0060_nsp_to_grainy"),
|
|
]
|
|
|
|
operations = [
|
|
migrations.AlterField(
|
|
model_name="facility",
|
|
name="sales_phone",
|
|
field=models.CharField(
|
|
blank=True,
|
|
help_text="An E.164-formatted phone number starts with a +, followed by the country code, then the national phone number (dropping the leading 0 in most countries), without spaces or dashes between the groups of digits",
|
|
max_length=192,
|
|
verbose_name="Sales Phone",
|
|
),
|
|
),
|
|
migrations.AlterField(
|
|
model_name="facility",
|
|
name="tech_phone",
|
|
field=models.CharField(
|
|
blank=True,
|
|
help_text="An E.164-formatted phone number starts with a +, followed by the country code, then the national phone number (dropping the leading 0 in most countries), without spaces or dashes between the groups of digits",
|
|
max_length=192,
|
|
verbose_name="Technical Phone",
|
|
),
|
|
),
|
|
migrations.AlterField(
|
|
model_name="internetexchange",
|
|
name="policy_phone",
|
|
field=models.CharField(
|
|
blank=True,
|
|
help_text="An E.164-formatted phone number starts with a +, followed by the country code, then the national phone number (dropping the leading 0 in most countries), without spaces or dashes between the groups of digits",
|
|
max_length=192,
|
|
verbose_name="Policy Phone",
|
|
),
|
|
),
|
|
migrations.AlterField(
|
|
model_name="internetexchange",
|
|
name="tech_phone",
|
|
field=models.CharField(
|
|
blank=True,
|
|
help_text="An E.164-formatted phone number starts with a +, followed by the country code, then the national phone number (dropping the leading 0 in most countries), without spaces or dashes between the groups of digits",
|
|
max_length=192,
|
|
verbose_name="Technical Phone",
|
|
),
|
|
),
|
|
migrations.AlterField(
|
|
model_name="network",
|
|
name="allow_ixp_update",
|
|
field=models.BooleanField(
|
|
default=False,
|
|
help_text="Specifies whether an IXP is allowed to add a netixlan entry for this network via their ixp_member data",
|
|
),
|
|
),
|
|
migrations.AlterField(
|
|
model_name="networkcontact",
|
|
name="phone",
|
|
field=models.CharField(
|
|
blank=True,
|
|
help_text="An E.164-formatted phone number starts with a +, followed by the country code, then the national phone number (dropping the leading 0 in most countries), without spaces or dashes between the groups of digits",
|
|
max_length=100,
|
|
verbose_name="Phone",
|
|
),
|
|
),
|
|
]
|