This repository has been archived on 2024-05-31. You can view files and clone it, but cannot push or open issues or pull requests.
authentik/passbook/sources/saml/migrations/0003_auto_20191107_1550.py

20 lines
509 B
Python
Raw Normal View History

2019-11-07 16:02:56 +00:00
# Generated by Django 2.2.6 on 2019-11-07 15:50
from django.db import migrations, models
class Migration(migrations.Migration):
dependencies = [
2019-12-31 11:51:16 +00:00
("passbook_sources_saml", "0002_auto_20191107_1505"),
2019-11-07 16:02:56 +00:00
]
operations = [
2019-12-31 11:51:16 +00:00
migrations.RemoveField(model_name="samlsource", name="signing_key",),
2019-11-07 16:02:56 +00:00
migrations.AddField(
2019-12-31 11:51:16 +00:00
model_name="samlsource",
name="idp_logout_url",
2019-11-07 16:02:56 +00:00
field=models.URLField(blank=True, default=None, null=True),
),
]