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
* purl and dependency_uid are the only required fields on DiscoveredDependency
* Update migrations
* Check for created DiscoveredDependency in tests
Signed-off-by: Jono Yang <[email protected]>
('dependency_uid', models.CharField(help_text='The unique identifier of this dependency.', max_length=1024)),
31
-
('for_package_uid', models.CharField(help_text='The unique identifier of the package this dependency is for.', max_length=1024)),
40
+
('for_package_uid', models.CharField(blank=True, help_text='The unique identifier of the package this dependency is for.', max_length=1024)),
32
41
('datafile_path', models.CharField(blank=True, help_text='The relative path to the datafile where this dependency was detected from.', max_length=1024)),
33
-
('datasource_id', models.CharField(help_text='The identifier for the datafile handler used to obtain this dependency.', max_length=64)),
42
+
('datasource_id', models.CharField(blank=True, help_text='The identifier for the datafile handler used to obtain this dependency.', max_length=64)),
0 commit comments