authentik.core.migrations.0051_group_authentik_c_is_supe_1e5a97_idx

 1# Generated by Django 5.1.12 on 2025-09-25 13:39
 2
 3from django.db import migrations, models
 4
 5
 6class Migration(migrations.Migration):
 7
 8    dependencies = [
 9        ("authentik_core", "0050_user_last_updated_and_more"),
10        ("authentik_rbac", "0006_alter_role_options"),
11    ]
12
13    operations = [
14        migrations.AddIndex(
15            model_name="group",
16            index=models.Index(fields=["is_superuser"], name="authentik_c_is_supe_1e5a97_idx"),
17        ),
18    ]
class Migration(django.db.migrations.migration.Migration):
 7class Migration(migrations.Migration):
 8
 9    dependencies = [
10        ("authentik_core", "0050_user_last_updated_and_more"),
11        ("authentik_rbac", "0006_alter_role_options"),
12    ]
13
14    operations = [
15        migrations.AddIndex(
16            model_name="group",
17            index=models.Index(fields=["is_superuser"], name="authentik_c_is_supe_1e5a97_idx"),
18        ),
19    ]

The base class for all migrations.

Migration files will import this from django.db.migrations.Migration and subclass it as a class called Migration. It will have one or more of the following attributes:

  • operations: A list of Operation instances, probably from django.db.migrations.operations
  • dependencies: A list of tuples of (app_path, migration_name)
  • run_before: A list of tuples of (app_path, migration_name)
  • replaces: A list of migration_names

Note that all migrations come out of migrations and into the Loader or Graph as instances, having been initialized with their app label and name.

dependencies = [('authentik_core', '0050_user_last_updated_and_more'), ('authentik_rbac', '0006_alter_role_options')]
operations = [<AddIndex model_name='group', index=<Index: fields=['is_superuser'] name='authentik_c_is_supe_1e5a97_idx'>>]