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
Matt Griswold 04f1928b3c Updates 2.23 (#843)
* pipenv lock and pyupgrade

* pyupgrade, black format, add docs

* update for py3.7
2020-09-29 20:13:38 -05:00

38 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,
),
),
]