sources/* add missing migrations
This commit is contained in:
30
passbook/sources/saml/migrations/0004_auto_20200217_1526.py
Normal file
30
passbook/sources/saml/migrations/0004_auto_20200217_1526.py
Normal file
@ -0,0 +1,30 @@
|
||||
# Generated by Django 3.0.3 on 2020-02-17 15:26
|
||||
|
||||
from django.db import migrations, models
|
||||
|
||||
|
||||
class Migration(migrations.Migration):
|
||||
|
||||
dependencies = [
|
||||
("passbook_sources_saml", "0003_auto_20191107_1550"),
|
||||
]
|
||||
|
||||
operations = [
|
||||
migrations.AlterField(
|
||||
model_name="samlsource",
|
||||
name="entity_id",
|
||||
field=models.TextField(blank=True, default=None, verbose_name="Entity ID"),
|
||||
),
|
||||
migrations.AlterField(
|
||||
model_name="samlsource",
|
||||
name="idp_logout_url",
|
||||
field=models.URLField(
|
||||
blank=True, default=None, null=True, verbose_name="IDP Logout URL"
|
||||
),
|
||||
),
|
||||
migrations.AlterField(
|
||||
model_name="samlsource",
|
||||
name="idp_url",
|
||||
field=models.URLField(verbose_name="IDP URL"),
|
||||
),
|
||||
]
|
||||
Reference in New Issue
Block a user