@@ -23,8 +23,9 @@ class Migration(migrations.Migration):
23
23
('created' , models .DateTimeField (auto_now_add = True , null = True )),
24
24
('last_updated' , models .DateTimeField (auto_now = True , null = True )),
25
25
('custom_field_data' , models .JSONField (blank = True , default = dict , encoder = utilities .json .CustomFieldJSONEncoder )),
26
- ('name' , models .CharField (max_length = 100 , unique = True )),
27
26
('description' , models .CharField (blank = True , max_length = 200 )),
27
+ ('comments' , models .TextField (blank = True )),
28
+ ('name' , models .CharField (max_length = 100 , unique = True )),
28
29
('version' , models .PositiveSmallIntegerField (default = 2 )),
29
30
('mode' , models .CharField ()),
30
31
('preshared_key' , models .TextField (blank = True )),
@@ -42,8 +43,9 @@ class Migration(migrations.Migration):
42
43
('created' , models .DateTimeField (auto_now_add = True , null = True )),
43
44
('last_updated' , models .DateTimeField (auto_now = True , null = True )),
44
45
('custom_field_data' , models .JSONField (blank = True , default = dict , encoder = utilities .json .CustomFieldJSONEncoder )),
45
- ('name' , models .CharField (max_length = 100 , unique = True )),
46
46
('description' , models .CharField (blank = True , max_length = 200 )),
47
+ ('comments' , models .TextField (blank = True )),
48
+ ('name' , models .CharField (max_length = 100 , unique = True )),
47
49
('pfs_group' , models .PositiveSmallIntegerField (blank = True , null = True )),
48
50
],
49
51
options = {
@@ -123,8 +125,9 @@ class Migration(migrations.Migration):
123
125
('created' , models .DateTimeField (auto_now_add = True , null = True )),
124
126
('last_updated' , models .DateTimeField (auto_now = True , null = True )),
125
127
('custom_field_data' , models .JSONField (blank = True , default = dict , encoder = utilities .json .CustomFieldJSONEncoder )),
126
- ('name' , models .CharField (max_length = 100 , unique = True )),
127
128
('description' , models .CharField (blank = True , max_length = 200 )),
129
+ ('comments' , models .TextField (blank = True )),
130
+ ('name' , models .CharField (max_length = 100 , unique = True )),
128
131
('encryption_algorithm' , models .CharField ()),
129
132
('authentication_algorithm' , models .CharField ()),
130
133
('sa_lifetime_seconds' , models .PositiveIntegerField (blank = True , null = True )),
@@ -154,8 +157,9 @@ class Migration(migrations.Migration):
154
157
('created' , models .DateTimeField (auto_now_add = True , null = True )),
155
158
('last_updated' , models .DateTimeField (auto_now = True , null = True )),
156
159
('custom_field_data' , models .JSONField (blank = True , default = dict , encoder = utilities .json .CustomFieldJSONEncoder )),
157
- ('name' , models .CharField (max_length = 100 , unique = True )),
158
160
('description' , models .CharField (blank = True , max_length = 200 )),
161
+ ('comments' , models .TextField (blank = True )),
162
+ ('name' , models .CharField (max_length = 100 , unique = True )),
159
163
('authentication_method' , models .CharField ()),
160
164
('encryption_algorithm' , models .CharField ()),
161
165
('authentication_algorithm' , models .CharField ()),
0 commit comments