1
0
mirror of https://github.com/peeringdb/peeringdb.git synced 2024-05-11 05:55:09 +00:00
Files
peeringdb-peeringdb/peeringdb_server/migrations/0014_clt_description.py
Stefan Pratter 5eb925e319 Support 202301 (#1329)
* 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>
2023-02-15 07:55:01 +00:00

37 lines
1.0 KiB
Python

# Generated by Django 1.11.4 on 2018-06-05 06:25
from django.db import migrations, models
class Migration(migrations.Migration):
dependencies = [
("peeringdb_server", "0013_user_locale"),
]
operations = [
migrations.AddField(
model_name="commandlinetool",
name="description",
field=models.CharField(
blank=True,
help_text="Descriptive text of command that can be searched",
max_length=255,
null=True,
),
),
migrations.AlterField(
model_name="commandlinetool",
name="tool",
field=models.CharField(
choices=[
(b"pdb_renumber_lans", "Renumber IP Space"),
(b"pdb_fac_merge", "Merge Facilities"),
(b"pdb_fac_merge_undo", "Merge Facilities: UNDO"),
],
help_text="name of the tool",
max_length=255,
),
),
]