authentik.providers.scim.migrations.0015_alter_scimprovider_compatibility_mode
1# Generated by Django 5.1.12 on 2025-09-24 12:10 2 3from django.db import migrations, models 4 5 6class Migration(migrations.Migration): 7 8 dependencies = [ 9 ( 10 "authentik_providers_scim", 11 "0014_scimprovider_auth_mode_scimprovider_auth_oauth_and_more", 12 ), 13 ] 14 15 operations = [ 16 migrations.AlterField( 17 model_name="scimprovider", 18 name="compatibility_mode", 19 field=models.CharField( 20 choices=[ 21 ("default", "Default"), 22 ("aws", "AWS"), 23 ("slack", "Slack"), 24 ("sfdc", "Salesforce"), 25 ], 26 default="default", 27 help_text="Alter authentik behavior for vendor-specific SCIM implementations.", 28 max_length=30, 29 verbose_name="SCIM Compatibility Mode", 30 ), 31 ), 32 ]
class
Migration(django.db.migrations.migration.Migration):
7class Migration(migrations.Migration): 8 9 dependencies = [ 10 ( 11 "authentik_providers_scim", 12 "0014_scimprovider_auth_mode_scimprovider_auth_oauth_and_more", 13 ), 14 ] 15 16 operations = [ 17 migrations.AlterField( 18 model_name="scimprovider", 19 name="compatibility_mode", 20 field=models.CharField( 21 choices=[ 22 ("default", "Default"), 23 ("aws", "AWS"), 24 ("slack", "Slack"), 25 ("sfdc", "Salesforce"), 26 ], 27 default="default", 28 help_text="Alter authentik behavior for vendor-specific SCIM implementations.", 29 max_length=30, 30 verbose_name="SCIM Compatibility Mode", 31 ), 32 ), 33 ]
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.