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

37 lines
1.0 KiB
Python
Raw Permalink Normal View History

2018-11-08 19:45:21 +00:00
# Generated by Django 1.11.4 on 2018-06-05 06:25
2018-11-08 19:45:21 +00:00
from django.db import migrations, models
class Migration(migrations.Migration):
dependencies = [
2019-12-05 16:57:52 +00:00
("peeringdb_server", "0013_user_locale"),
2018-11-08 19:45:21 +00:00
]
operations = [
migrations.AddField(
2019-12-05 16:57:52 +00:00
model_name="commandlinetool",
name="description",
2018-11-08 19:45:21 +00:00
field=models.CharField(
blank=True,
2019-12-05 16:57:52 +00:00
help_text="Descriptive text of command that can be searched",
max_length=255,
null=True,
),
2018-11-08 19:45:21 +00:00
),
migrations.AlterField(
2019-12-05 16:57:52 +00:00
model_name="commandlinetool",
name="tool",
2018-11-08 19:45:21 +00:00
field=models.CharField(
2019-12-05 16:57:52 +00:00
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,
),
2018-11-08 19:45:21 +00:00
),
]