authentik.providers.scim.migrations.0017_alter_scimprovider_auth_oauth_user
1# Generated by Django 5.2.8 on 2025-11-25 01:08 2 3import django.db.models.deletion 4from django.conf import settings 5from django.db import migrations, models 6 7 8class Migration(migrations.Migration): 9 10 dependencies = [ 11 ("authentik_providers_scim", "0016_scimprovider_sync_page_size_and_more"), 12 migrations.swappable_dependency(settings.AUTH_USER_MODEL), 13 ] 14 15 operations = [ 16 migrations.AlterField( 17 model_name="scimprovider", 18 name="auth_oauth_user", 19 field=models.ForeignKey( 20 default=None, 21 null=True, 22 on_delete=django.db.models.deletion.SET_NULL, 23 to=settings.AUTH_USER_MODEL, 24 ), 25 ), 26 ]
class
Migration(django.db.migrations.migration.Migration):
9class Migration(migrations.Migration): 10 11 dependencies = [ 12 ("authentik_providers_scim", "0016_scimprovider_sync_page_size_and_more"), 13 migrations.swappable_dependency(settings.AUTH_USER_MODEL), 14 ] 15 16 operations = [ 17 migrations.AlterField( 18 model_name="scimprovider", 19 name="auth_oauth_user", 20 field=models.ForeignKey( 21 default=None, 22 null=True, 23 on_delete=django.db.models.deletion.SET_NULL, 24 to=settings.AUTH_USER_MODEL, 25 ), 26 ), 27 ]
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.