mirror of
https://github.com/peeringdb/peeringdb.git
synced 2024-05-11 05:55:09 +00:00
initial commit of code
This commit is contained in:
32
peeringdb_server/migrations/0014_clt_description.py
Normal file
32
peeringdb_server/migrations/0014_clt_description.py
Normal file
@@ -0,0 +1,32 @@
|
||||
# -*- coding: utf-8 -*-
|
||||
# Generated by Django 1.11.4 on 2018-06-05 06:25
|
||||
from __future__ import unicode_literals
|
||||
|
||||
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),
|
||||
),
|
||||
]
|
||||
Reference in New Issue
Block a user