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
('created', models.DateTimeField(auto_now_add=True, help_text='Time that the object was initially created, and saved to the database', null=True, verbose_name='Created')),
44
+
('updated', models.DateTimeField(auto_now=True, help_text='Time that the object was most recently saved to the database', null=True, verbose_name='Updated')),
45
+
('location_type', models.CharField(editable=False, help_text='The type of location that is stored. This field is automatically managed', max_length=12, validators=[dojo.base_models.validators.validate_not_empty], verbose_name='Location type')),
46
+
('location_value', models.CharField(editable=False, help_text='The string representation of a given location. This field is automatically managed', max_length=2048, validators=[dojo.base_models.validators.validate_not_empty], verbose_name='Location Value')),
47
+
],
48
+
options={
49
+
'abstract': False,
50
+
},
51
+
),
35
52
migrations.CreateModel(
36
53
name='LocationFindingReference',
37
54
fields=[
@@ -59,6 +76,21 @@ class Migration(migrations.Migration):
('protocol', models.CharField(blank=True, default='', help_text='The protocol of the URL (e.g., http, https, ftp, etc.)', max_length=10, validators=[dojo.url.validators.validate_protocol])),
135
+
('user_info', models.CharField(blank=True, default='', help_text='Connection details for a given user', max_length=512, validators=[dojo.url.validators.validate_user_info])),
136
+
('host', models.CharField(help_text='The host of the URL, which can be a domain name or an IP address', max_length=256, validators=[dojo.base_models.validators.validate_not_empty])),
137
+
('port', models.PositiveIntegerField(blank=True, help_text='The port number of the URL (optional)', null=True, validators=[django.core.validators.MinValueValidator(1), django.core.validators.MaxValueValidator(65535)])),
138
+
('path', models.CharField(blank=True, default='', help_text='The path of the URL (optional),', max_length=2048)),
139
+
('query', models.CharField(blank=True, default='', help_text='The query string of the URL (optional)', max_length=2048, validators=[dojo.url.validators.validate_query])),
140
+
('fragment', models.CharField(blank=True, default='', help_text='The fragment identifier of the URL (optional)', max_length=2048, validators=[dojo.url.validators.validate_fragment])),
141
+
('host_validation_failure', models.BooleanField(default=False, help_text='Dictates whether the endpoint was found to have host validation issues during creation')),
142
+
],
143
+
options={
144
+
'abstract': False,
145
+
},
146
+
),
95
147
pgtrigger.migrations.RemoveTrigger(
96
148
model_name='finding',
97
149
name='insert_insert',
@@ -219,6 +271,16 @@ class Migration(migrations.Migration):
field=tagulous.models.fields.TagField(_set_tag_meta=True, blank=True, force_lowercase=True, help_text='Internal use tags sepcifically for maintaining parity with product. This field will be present as a subset in the tags field', to='dojo.tagulous_location_inherited_tags'),
317
+
),
247
318
migrations.AlterUniqueTogether(
248
319
name='tagulous_location_tags',
249
320
unique_together={('slug',)},
@@ -258,6 +329,33 @@ class Migration(migrations.Migration):
0 commit comments