authentik.providers.saml.migrations.0018_alter_samlprovider_acs_url
1# Generated by Django 5.0.13 on 2025-03-31 13:50 2 3import authentik.lib.models 4from django.db import migrations, models 5 6 7class Migration(migrations.Migration): 8 9 dependencies = [ 10 ("authentik_providers_saml", "0017_samlprovider_authn_context_class_ref_mapping"), 11 ] 12 13 operations = [ 14 migrations.AlterField( 15 model_name="samlprovider", 16 name="acs_url", 17 field=models.TextField( 18 validators=[authentik.lib.models.DomainlessURLValidator(schemes=("http", "https"))], 19 verbose_name="ACS URL", 20 ), 21 ), 22 ]
class
Migration(django.db.migrations.migration.Migration):
8class Migration(migrations.Migration): 9 10 dependencies = [ 11 ("authentik_providers_saml", "0017_samlprovider_authn_context_class_ref_mapping"), 12 ] 13 14 operations = [ 15 migrations.AlterField( 16 model_name="samlprovider", 17 name="acs_url", 18 field=models.TextField( 19 validators=[authentik.lib.models.DomainlessURLValidator(schemes=("http", "https"))], 20 verbose_name="ACS URL", 21 ), 22 ), 23 ]
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.