2018-12-10 09:49:50 +00:00
|
|
|
# Generated by Django 2.1.4 on 2018-12-10 09:16
|
2018-11-16 10:41:14 +00:00
|
|
|
|
|
|
|
import django.db.models.deletion
|
2018-11-16 12:08:37 +00:00
|
|
|
from django.db import migrations, models
|
2018-11-16 10:41:14 +00:00
|
|
|
|
|
|
|
|
|
|
|
class Migration(migrations.Migration):
|
|
|
|
|
|
|
|
initial = True
|
|
|
|
|
|
|
|
dependencies = [
|
2018-11-25 11:31:11 +00:00
|
|
|
('passbook_core', '0001_initial'),
|
2018-11-16 10:41:14 +00:00
|
|
|
]
|
|
|
|
|
|
|
|
operations = [
|
|
|
|
migrations.CreateModel(
|
2018-12-10 09:49:50 +00:00
|
|
|
name='SAMLProvider',
|
2018-11-16 10:41:14 +00:00
|
|
|
fields=[
|
2018-12-10 09:49:50 +00:00
|
|
|
('provider_ptr', models.OneToOneField(auto_created=True, on_delete=django.db.models.deletion.CASCADE, parent_link=True, primary_key=True, serialize=False, to='passbook_core.Provider')),
|
|
|
|
('name', models.TextField()),
|
2018-11-16 10:41:14 +00:00
|
|
|
('acs_url', models.URLField()),
|
|
|
|
('processor_path', models.CharField(max_length=255)),
|
2018-12-10 09:49:50 +00:00
|
|
|
('issuer', models.TextField()),
|
|
|
|
('assertion_valid_for', models.IntegerField(default=86400)),
|
|
|
|
('signing', models.BooleanField(default=True)),
|
|
|
|
('signing_cert', models.TextField()),
|
|
|
|
('signing_key', models.TextField()),
|
2018-11-16 10:41:14 +00:00
|
|
|
],
|
|
|
|
options={
|
2018-12-10 09:49:50 +00:00
|
|
|
'verbose_name': 'SAML Provider',
|
|
|
|
'verbose_name_plural': 'SAML Providers',
|
2018-11-16 10:41:14 +00:00
|
|
|
},
|
2018-12-10 09:49:50 +00:00
|
|
|
bases=('passbook_core.provider',),
|
2018-11-16 10:41:14 +00:00
|
|
|
),
|
|
|
|
]
|