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: vulnerabilities/migrations/0001_initial.py
+14-7Lines changed: 14 additions & 7 deletions
Original file line number
Diff line number
Diff line change
@@ -1,4 +1,4 @@
1
-
# Generated by Django 3.0.3 on 2020-04-10 15:49
1
+
# Generated by Django 3.0.7 on 2020-07-10 05:48
2
2
3
3
importdjango.contrib.postgres.fields.jsonb
4
4
fromdjango.dbimportmigrations, models
@@ -26,10 +26,17 @@ class Migration(migrations.Migration):
26
26
('name', models.CharField(help_text='Name of the importer', max_length=100, unique=True)),
27
27
('license', models.CharField(blank=True, help_text='License of the vulnerability data', max_length=100)),
28
28
('last_run', models.DateTimeField(help_text='UTC Timestamp of the last run', null=True)),
29
-
('data_source', models.CharField(help_text='Class name of the data source implementation importable from vulnerabilities.importers', max_length=100)),
29
+
('data_source', models.CharField(help_text='Name of the data source implementation importable from vulnerabilities.importers', max_length=100)),
30
30
('data_source_cfg', django.contrib.postgres.fields.jsonb.JSONField(default=dict, help_text='Implementation-specific configuration for the data source')),
@@ -38,13 +45,9 @@ class Migration(migrations.Migration):
38
45
('namespace', models.CharField(blank=True, help_text='Package name prefix, such as Maven groupid, Docker image owner, GitHub user or organization, etc.', max_length=255, null=True)),
39
46
('name', models.CharField(blank=True, help_text='Name of the package.', max_length=100, null=True)),
40
47
('version', models.CharField(blank=True, help_text='Version of the package.', max_length=100, null=True)),
41
-
('qualifiers', django.contrib.postgres.fields.jsonb.JSONField(default=dict, null=True, help_text='Extra qualifying data for a package such as the name of an OS, architecture, distro, etc.')),
42
48
('subpath', models.CharField(blank=True, help_text='Extra subpath within a package, relative to the package root.', max_length=200, null=True)),
49
+
('qualifiers', django.contrib.postgres.fields.jsonb.JSONField(default=dict, help_text='Extra qualifying data for a package such as the name of an OS, architecture, distro, etc.', null=True)),
0 commit comments