mirror of
https://github.com/peeringdb/peeringdb.git
synced 2024-05-11 05:55:09 +00:00
black formatted
This commit is contained in:
@@ -8,25 +8,31 @@ from django.db import migrations, models
|
||||
class Migration(migrations.Migration):
|
||||
|
||||
dependencies = [
|
||||
('peeringdb_server', '0013_user_locale'),
|
||||
("peeringdb_server", "0013_user_locale"),
|
||||
]
|
||||
|
||||
operations = [
|
||||
migrations.AddField(
|
||||
model_name='commandlinetool',
|
||||
name='description',
|
||||
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),
|
||||
help_text="Descriptive text of command that can be searched",
|
||||
max_length=255,
|
||||
null=True,
|
||||
),
|
||||
),
|
||||
migrations.AlterField(
|
||||
model_name='commandlinetool',
|
||||
name='tool',
|
||||
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),
|
||||
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