From 5663b33dcd2fad6a6ea5630d6f7d738b14111814 Mon Sep 17 00:00:00 2001 From: Rick Elrod Date: Thu, 6 Jun 2024 19:05:31 +0200 Subject: [PATCH] Add missimg migration from #407 Signed-off-by: Rick Elrod --- .../0012_alter_authenticatormap_map_type.py | 18 ++++++++++++++++++ 1 file changed, 18 insertions(+) create mode 100644 ansible_base/authentication/migrations/0012_alter_authenticatormap_map_type.py diff --git a/ansible_base/authentication/migrations/0012_alter_authenticatormap_map_type.py b/ansible_base/authentication/migrations/0012_alter_authenticatormap_map_type.py new file mode 100644 index 000000000..558728076 --- /dev/null +++ b/ansible_base/authentication/migrations/0012_alter_authenticatormap_map_type.py @@ -0,0 +1,18 @@ +# Generated by Django 4.2.11 on 2024-06-06 17:04 + +from django.db import migrations, models + + +class Migration(migrations.Migration): + + dependencies = [ + ('dab_authentication', '0011_authenticatormap_role_and_more'), + ] + + operations = [ + migrations.AlterField( + model_name='authenticatormap', + name='map_type', + field=models.CharField(choices=[('allow', 'allow'), ('is_superuser', 'is_superuser'), ('role', 'role'), ('organization', 'organization'), ('team', 'team')], default='team', help_text='What will the map grant the user? System access (allow) a team or organization membership, the superuser flag or a role in the system', max_length=17), + ), + ]