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
('material_types', models.CharField(default='slides', max_length=64, validators=[django.core.validators.RegexValidator(code=b'invalid', message=b'Enter a comma-separated list of material types', regex=b'[a-z0-9_-]+(,[a-z0-9_-]+)*')])),
44
-
# type: ignore (FIXME: remove when Django 2)
44
+
# type: ignore
45
45
('admin_roles', models.CharField(default='chair', max_length=64, validators=[django.core.validators.RegexValidator(code=b'invalid', message=b'Enter a comma-separated list of role slugs', regex=b'[a-z0-9_-]+(,[a-z0-9_-]+)*')])),
Copy file name to clipboardExpand all lines: ietf/group/migrations/0004_add_group_feature_fields.py
+4-4Lines changed: 4 additions & 4 deletions
Original file line number
Diff line number
Diff line change
@@ -45,7 +45,7 @@ class Migration(migrations.Migration):
45
45
model_name='groupfeatures',
46
46
name='role_order',
47
47
field=models.CharField(default='chair,secr,member', help_text='The order in which roles are shown, for instance on photo pages', max_length=128, validators=[django.core.validators.RegexValidator(code=b'invalid', message=b'Enter a comma-separated list of role slugs', regex=b'[a-z0-9_-]+(,[a-z0-9_-]+)*')]),
48
-
# type: ignore (FIXME: remove when Django 2)
48
+
# type: ignore
49
49
),
50
50
migrations.AddField(
51
51
model_name='groupfeatures',
@@ -61,7 +61,7 @@ class Migration(migrations.Migration):
61
61
model_name='groupfeatures',
62
62
name='matman_roles',
63
63
field=models.CharField(default='ad,chair,delegate,secr', max_length=64, validators=[django.core.validators.RegexValidator(code=b'invalid', message=b'Enter a comma-separated list of role slugs', regex=b'[a-z0-9_-]+(,[a-z0-9_-]+)*')]),
64
-
# type: ignore (FIXME: remove when Django 2)
64
+
# type: ignore
65
65
),
66
66
migrations.AddField(
67
67
model_name='historicalgroupfeatures',
@@ -92,7 +92,7 @@ class Migration(migrations.Migration):
92
92
model_name='historicalgroupfeatures',
93
93
name='role_order',
94
94
field=models.CharField(default='chair,secr,member', help_text='The order in which roles are shown, for instance on photo pages', max_length=128, validators=[django.core.validators.RegexValidator(code=b'invalid', message=b'Enter a comma-separated list of role slugs', regex=b'[a-z0-9_-]+(,[a-z0-9_-]+)*')]),
95
-
# type: ignore (FIXME: remove when Django 2)
95
+
# type: ignore
96
96
),
97
97
migrations.AddField(
98
98
model_name='historicalgroupfeatures',
@@ -108,6 +108,6 @@ class Migration(migrations.Migration):
108
108
model_name='historicalgroupfeatures',
109
109
name='matman_roles',
110
110
field=models.CharField(default='ad,chair,delegate,secr', max_length=64, validators=[django.core.validators.RegexValidator(code=b'invalid', message=b'Enter a comma-separated list of role slugs', regex=b'[a-z0-9_-]+(,[a-z0-9_-]+)*')]),
0 commit comments