Skip to content

Commit

Permalink
Add extra migration as discussed
Browse files Browse the repository at this point in the history
  • Loading branch information
mrchrisadams committed Jun 23, 2023
1 parent 773003c commit 9d042dc
Show file tree
Hide file tree
Showing 2 changed files with 22 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ class Migration(migrations.Migration):
name="missing_network_explanation",
field=models.TextField(
blank=True,
help_text="If an organisation is not listing IP Ranges and AS numbers, we need a way to identify them in network lookups.",
help_text="If an organisation is not listing the IP Ranges and AS numbers we need to be able to explain why to list them as green.",
verbose_name="Reason for no IP / AS data",
),
),
Expand Down
Original file line number Diff line number Diff line change
@@ -0,0 +1,21 @@
# Generated by Django 3.2.18 on 2023-06-22 15:53

from django.db import migrations, models


class Migration(migrations.Migration):
dependencies = [
("accounts", "0054_providerrequest_network_import_required"),
]

operations = [
migrations.AlterField(
model_name="providerrequest",
name="missing_network_explanation",
field=models.TextField(
blank=True,
help_text="If an organisation is not listing IP Ranges and AS numbers, we need a way to identify them in network lookups.",
verbose_name="Reason for no IP / AS data",
),
),
]

0 comments on commit 9d042dc

Please sign in to comment.