-
Notifications
You must be signed in to change notification settings - Fork 179
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #835 from intuitem/increase_link_max_length
increase max length for evidence links
- Loading branch information
Showing
4 changed files
with
54 additions
and
2 deletions.
There are no files selected for viewing
34 changes: 34 additions & 0 deletions
34
backend/core/migrations/0029_alter_appliedcontrol_link_alter_evidence_link.py
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,34 @@ | ||
# Generated by Django 5.1 on 2024-09-17 19:08 | ||
|
||
from django.db import migrations, models | ||
|
||
|
||
class Migration(migrations.Migration): | ||
dependencies = [ | ||
("core", "0028_complianceassessment_observation_and_more"), | ||
] | ||
|
||
operations = [ | ||
migrations.AlterField( | ||
model_name="appliedcontrol", | ||
name="link", | ||
field=models.CharField( | ||
blank=True, | ||
help_text="External url for action follow-up (eg. Jira ticket)", | ||
max_length=2048, | ||
null=True, | ||
verbose_name="Link", | ||
), | ||
), | ||
migrations.AlterField( | ||
model_name="evidence", | ||
name="link", | ||
field=models.URLField( | ||
blank=True, | ||
help_text="Link to the evidence (eg. Jira ticket, etc.)", | ||
max_length=2048, | ||
null=True, | ||
verbose_name="Link", | ||
), | ||
), | ||
] |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
17 changes: 17 additions & 0 deletions
17
backend/tprm/migrations/0002_alter_entity_reference_link.py
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,17 @@ | ||
# Generated by Django 5.1 on 2024-09-17 19:08 | ||
|
||
from django.db import migrations, models | ||
|
||
|
||
class Migration(migrations.Migration): | ||
dependencies = [ | ||
("tprm", "0001_initial"), | ||
] | ||
|
||
operations = [ | ||
migrations.AlterField( | ||
model_name="entity", | ||
name="reference_link", | ||
field=models.URLField(blank=True, max_length=2048, null=True), | ||
), | ||
] |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters