diff --git a/authentik/policies/migrations/0011_policybinding_failure_result_and_more.py b/authentik/policies/migrations/0011_policybinding_failure_result_and_more.py index 538cdc2e63cc..90c026e19bda 100644 --- a/authentik/policies/migrations/0011_policybinding_failure_result_and_more.py +++ b/authentik/policies/migrations/0011_policybinding_failure_result_and_more.py @@ -1,4 +1,6 @@ # Generated by Django 4.2.5 on 2023-09-13 18:07 +import authentik.lib.models +import django.db.models.deletion from django.db import migrations, models @@ -23,4 +25,13 @@ class Migration(migrations.Migration): default=30, help_text="Timeout after which Policy execution is terminated." ), ), + migrations.AlterField( + model_name="policybinding", + name="target", + field=authentik.lib.models.InheritanceForeignKey( + on_delete=django.db.models.deletion.CASCADE, + related_name="bindings", + to="authentik_policies.policybindingmodel", + ), + ), ]