Skip to content

Commit 0d683a0

Browse files
authored
Fix missing migration for Project.purl field #1603 (#1605)
Signed-off-by: Aayush Kumar <[email protected]>
1 parent 2309019 commit 0d683a0

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

scanpipe/migrations/0069_project_purl.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
# Generated by Django 5.1.3 on 2024-11-08 12:47
1+
# Generated by Django 5.1.5 on 2025-02-27 07:17
22

33
from django.db import migrations, models
44

@@ -13,6 +13,6 @@ class Migration(migrations.Migration):
1313
migrations.AddField(
1414
model_name='project',
1515
name='purl',
16-
field=models.CharField(blank=True, help_text='Package URL for the project, used for pushing project scan result to FederatedCode. This should be the PURL of the input.', max_length=2048),
16+
field=models.CharField(blank=True, help_text="Package URL (PURL) for the project, required for pushing the project's scan result to FederatedCode. For example, if the input is an input URL like https://registry.npmjs.org/lodash/-/lodash-4.17.21.tgz, the corresponding PURL would be pkg:npm/[email protected].", max_length=2048),
1717
),
1818
]

0 commit comments

Comments
 (0)