33 lines
1.0 KiB
Python
33 lines
1.0 KiB
Python
|
# Generated by Django 2.1.3 on 2018-11-26 15:09
|
||
|
|
||
|
from django.db import migrations, models
|
||
|
import django.db.models.deletion
|
||
|
|
||
|
|
||
|
class Migration(migrations.Migration):
|
||
|
|
||
|
dependencies = [
|
||
|
('passbook_core', '0003_rule_order'),
|
||
|
('passbook_saml_idp', '0001_initial'),
|
||
|
]
|
||
|
|
||
|
operations = [
|
||
|
migrations.CreateModel(
|
||
|
name='SAMLProvider',
|
||
|
fields=[
|
||
|
('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()),
|
||
|
('acs_url', models.URLField()),
|
||
|
('processor_path', models.CharField(max_length=255)),
|
||
|
],
|
||
|
bases=('passbook_core.provider',),
|
||
|
),
|
||
|
migrations.RemoveField(
|
||
|
model_name='samlapplication',
|
||
|
name='application_ptr',
|
||
|
),
|
||
|
migrations.DeleteModel(
|
||
|
name='SAMLApplication',
|
||
|
),
|
||
|
]
|