You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: scanpipe/migrations/0062_dependency_resolver_update.py
+36-3Lines changed: 36 additions & 3 deletions
Original file line number
Diff line number
Diff line change
@@ -13,17 +13,50 @@ class Migration(migrations.Migration):
13
13
migrations.AddField(
14
14
model_name="discovereddependency",
15
15
name="is_direct",
16
-
field=models.BooleanField(default=False),
16
+
field=models.BooleanField(
17
+
default=False,
18
+
help_text="True if this is a direct, first-level dependency relationship for a package.",
19
+
),
17
20
),
18
21
migrations.AddField(
19
22
model_name="discoveredpackage",
20
23
name="is_private",
21
-
field=models.BooleanField(default=False),
24
+
field=models.BooleanField(
25
+
default=False,
26
+
help_text="True if this is a private package, either not meant to be published on a repository, and/or a local package without a name and version used primarily to track dependencies and other information.",
27
+
),
22
28
),
23
29
migrations.AddField(
24
30
model_name="discoveredpackage",
25
31
name="is_virtual",
26
-
field=models.BooleanField(default=False),
32
+
field=models.BooleanField(
33
+
default=False,
34
+
help_text="True if this package is created only from a manifest or lockfile, and not from its actual packaged code. The files of this package are not present in the codebase.",
35
+
),
36
+
),
37
+
migrations.AlterField(
38
+
model_name="discovereddependency",
39
+
name="is_optional",
40
+
field=models.BooleanField(
41
+
default=False,
42
+
help_text="True if this dependency is an optional dependency",
43
+
),
44
+
),
45
+
migrations.AlterField(
46
+
model_name="discovereddependency",
47
+
name="is_resolved",
48
+
field=models.BooleanField(
49
+
default=False,
50
+
help_text="True if this dependency version requirement has been pinned and this dependency points to an exact version.",
51
+
),
52
+
),
53
+
migrations.AlterField(
54
+
model_name="discovereddependency",
55
+
name="is_runtime",
56
+
field=models.BooleanField(
57
+
default=False,
58
+
help_text="True if this dependency is a runtime dependency.",
0 commit comments