|
@@ -23,8 +23,9 @@ class Migration(migrations.Migration):
|
|
|
('created', models.DateTimeField(auto_now_add=True, null=True)),
|
|
('created', models.DateTimeField(auto_now_add=True, null=True)),
|
|
|
('last_updated', models.DateTimeField(auto_now=True, null=True)),
|
|
('last_updated', models.DateTimeField(auto_now=True, null=True)),
|
|
|
('custom_field_data', models.JSONField(blank=True, default=dict, encoder=utilities.json.CustomFieldJSONEncoder)),
|
|
('custom_field_data', models.JSONField(blank=True, default=dict, encoder=utilities.json.CustomFieldJSONEncoder)),
|
|
|
- ('name', models.CharField(max_length=100, unique=True)),
|
|
|
|
|
('description', models.CharField(blank=True, max_length=200)),
|
|
('description', models.CharField(blank=True, max_length=200)),
|
|
|
|
|
+ ('comments', models.TextField(blank=True)),
|
|
|
|
|
+ ('name', models.CharField(max_length=100, unique=True)),
|
|
|
('version', models.PositiveSmallIntegerField(default=2)),
|
|
('version', models.PositiveSmallIntegerField(default=2)),
|
|
|
('mode', models.CharField()),
|
|
('mode', models.CharField()),
|
|
|
('preshared_key', models.TextField(blank=True)),
|
|
('preshared_key', models.TextField(blank=True)),
|
|
@@ -42,8 +43,9 @@ class Migration(migrations.Migration):
|
|
|
('created', models.DateTimeField(auto_now_add=True, null=True)),
|
|
('created', models.DateTimeField(auto_now_add=True, null=True)),
|
|
|
('last_updated', models.DateTimeField(auto_now=True, null=True)),
|
|
('last_updated', models.DateTimeField(auto_now=True, null=True)),
|
|
|
('custom_field_data', models.JSONField(blank=True, default=dict, encoder=utilities.json.CustomFieldJSONEncoder)),
|
|
('custom_field_data', models.JSONField(blank=True, default=dict, encoder=utilities.json.CustomFieldJSONEncoder)),
|
|
|
- ('name', models.CharField(max_length=100, unique=True)),
|
|
|
|
|
('description', models.CharField(blank=True, max_length=200)),
|
|
('description', models.CharField(blank=True, max_length=200)),
|
|
|
|
|
+ ('comments', models.TextField(blank=True)),
|
|
|
|
|
+ ('name', models.CharField(max_length=100, unique=True)),
|
|
|
('pfs_group', models.PositiveSmallIntegerField(blank=True, null=True)),
|
|
('pfs_group', models.PositiveSmallIntegerField(blank=True, null=True)),
|
|
|
],
|
|
],
|
|
|
options={
|
|
options={
|
|
@@ -123,8 +125,9 @@ class Migration(migrations.Migration):
|
|
|
('created', models.DateTimeField(auto_now_add=True, null=True)),
|
|
('created', models.DateTimeField(auto_now_add=True, null=True)),
|
|
|
('last_updated', models.DateTimeField(auto_now=True, null=True)),
|
|
('last_updated', models.DateTimeField(auto_now=True, null=True)),
|
|
|
('custom_field_data', models.JSONField(blank=True, default=dict, encoder=utilities.json.CustomFieldJSONEncoder)),
|
|
('custom_field_data', models.JSONField(blank=True, default=dict, encoder=utilities.json.CustomFieldJSONEncoder)),
|
|
|
- ('name', models.CharField(max_length=100, unique=True)),
|
|
|
|
|
('description', models.CharField(blank=True, max_length=200)),
|
|
('description', models.CharField(blank=True, max_length=200)),
|
|
|
|
|
+ ('comments', models.TextField(blank=True)),
|
|
|
|
|
+ ('name', models.CharField(max_length=100, unique=True)),
|
|
|
('encryption_algorithm', models.CharField()),
|
|
('encryption_algorithm', models.CharField()),
|
|
|
('authentication_algorithm', models.CharField()),
|
|
('authentication_algorithm', models.CharField()),
|
|
|
('sa_lifetime_seconds', models.PositiveIntegerField(blank=True, null=True)),
|
|
('sa_lifetime_seconds', models.PositiveIntegerField(blank=True, null=True)),
|
|
@@ -154,8 +157,9 @@ class Migration(migrations.Migration):
|
|
|
('created', models.DateTimeField(auto_now_add=True, null=True)),
|
|
('created', models.DateTimeField(auto_now_add=True, null=True)),
|
|
|
('last_updated', models.DateTimeField(auto_now=True, null=True)),
|
|
('last_updated', models.DateTimeField(auto_now=True, null=True)),
|
|
|
('custom_field_data', models.JSONField(blank=True, default=dict, encoder=utilities.json.CustomFieldJSONEncoder)),
|
|
('custom_field_data', models.JSONField(blank=True, default=dict, encoder=utilities.json.CustomFieldJSONEncoder)),
|
|
|
- ('name', models.CharField(max_length=100, unique=True)),
|
|
|
|
|
('description', models.CharField(blank=True, max_length=200)),
|
|
('description', models.CharField(blank=True, max_length=200)),
|
|
|
|
|
+ ('comments', models.TextField(blank=True)),
|
|
|
|
|
+ ('name', models.CharField(max_length=100, unique=True)),
|
|
|
('authentication_method', models.CharField()),
|
|
('authentication_method', models.CharField()),
|
|
|
('encryption_algorithm', models.CharField()),
|
|
('encryption_algorithm', models.CharField()),
|
|
|
('authentication_algorithm', models.CharField()),
|
|
('authentication_algorithm', models.CharField()),
|