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.
2018-11-24 21:26:28 +00:00
|
|
|
# Generated by Django 2.1.3 on 2018-11-24 09:48
|
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-24 21:26:28 +00:00
|
|
|
('passbook_core', '0002_application_skip_authorization'),
|
2018-11-16 10:41:14 +00:00
|
|
|
]
|
|
|
|
|
|
|
|
operations = [
|
|
|
|
migrations.CreateModel(
|
|
|
|
name='SAMLApplication',
|
|
|
|
fields=[
|
|
|
|
('application_ptr', models.OneToOneField(auto_created=True, on_delete=django.db.models.deletion.CASCADE, parent_link=True, primary_key=True, serialize=False, to='passbook_core.Application')),
|
|
|
|
('acs_url', models.URLField()),
|
|
|
|
('processor_path', models.CharField(max_length=255)),
|
|
|
|
],
|
|
|
|
options={
|
|
|
|
'abstract': False,
|
|
|
|
},
|
|
|
|
bases=('passbook_core.application',),
|
|
|
|
),
|
|
|
|
]
|