19 lines
410 B
Python
19 lines
410 B
Python
|
# Generated by Django 2.2 on 2019-04-18 09:09
|
||
|
|
||
|
from django.db import migrations, models
|
||
|
|
||
|
|
||
|
class Migration(migrations.Migration):
|
||
|
|
||
|
dependencies = [
|
||
|
('passbook_saml_idp', '0002_samlpropertymapping'),
|
||
|
]
|
||
|
|
||
|
operations = [
|
||
|
migrations.AddField(
|
||
|
model_name='samlprovider',
|
||
|
name='audience',
|
||
|
field=models.TextField(blank=True, default=''),
|
||
|
),
|
||
|
]
|