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
field=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),
21
+
),
22
+
migrations.AddField(
23
+
model_name='package',
24
+
name='qualifiers',
25
+
field=models.CharField(blank=True, help_text='Extra qualifying data for a package such as the name of an OS, architecture, distro, etc.', max_length=1024, null=True),
26
+
),
27
+
migrations.AddField(
28
+
model_name='package',
29
+
name='subpath',
30
+
field=models.CharField(blank=True, help_text='Extra subpath within a package, relative to the package root.', max_length=200, null=True),
31
+
),
32
+
migrations.AddField(
33
+
model_name='package',
34
+
name='type',
35
+
field=models.CharField(blank=True, help_text='A short code to identify the type of this package. For example: gem for a Rubygem, docker for a container, pypi for a Python Wheel or Egg, maven for a Maven Jar, deb for a Debian package, etc.', max_length=16, null=True),
36
+
),
37
+
migrations.AlterField(
38
+
model_name='package',
39
+
name='name',
40
+
field=models.CharField(blank=True, help_text='Name of the package.', max_length=100, null=True),
41
+
),
42
+
migrations.AlterField(
43
+
model_name='package',
44
+
name='version',
45
+
field=models.CharField(blank=True, help_text='Version of the package.', max_length=50, null=True),
0 commit comments