wip: add missing migrations to a2_rbac squash migration

This commit is contained in:
Benjamin Dauvergne 2024-02-27 17:36:10 +01:00
parent 56eea91946
commit 4f379a9832
5 changed files with 10 additions and 4 deletions

View File

@ -174,6 +174,10 @@ class Migration(migrations.Migration):
verbose_name='Colour',
),
),
(
'phone_is_unique',
models.BooleanField(blank=True, default=False, verbose_name='Phone is unique'),
),
],
options={
'verbose_name': 'organizational unit',

View File

@ -44,12 +44,14 @@ class Migration(migrations.Migration):
('a2_rbac', '0035_populate_role_fields'),
('a2_rbac', '0036_delete_roleattribute'),
('a2_rbac', '0037_remove_organizationalunit_min_password_strength'),
('a2_rbac', '0038_organizationalunit_phone_is_unique'),
('a2_rbac', '0039_set_user_view_permissions_by_ou'),
]
initial = True
dependencies = [
('a2_rbac', '0038_replace'),
('a2_rbac', '0040_replace'),
('custom_user', '0037_replace'),
('contenttypes', '0002_remove_content_type_name'),
('authentic2', '0051_replace'),

View File

@ -35,7 +35,7 @@ class Migration(migrations.Migration):
initial = True
dependencies = [
('a2_rbac', '0038_replace'),
('a2_rbac', '0040_replace'),
('authentic2', '0051_replace'),
]

View File

@ -57,7 +57,7 @@ class Migration(migrations.Migration):
dependencies = [
('auth', '0012_alter_user_first_name_max_length'),
('a2_rbac', '0038_replace'),
('a2_rbac', '0040_replace'),
('authentic2', '0051_replace'),
]

View File

@ -67,7 +67,7 @@ class Migration(migrations.Migration):
initial = True
dependencies = [
('a2_rbac', '0039_replace'),
('a2_rbac', '0041_replace'),
('custom_user', '0037_replace'),
('contenttypes', '0002_remove_content_type_name'),
('authentic2', '0051_replace'),