2019-10-07 14:33:48 +00:00
|
|
|
# Generated by Django 2.2.6 on 2019-10-07 14:07
|
2019-07-05 13:21:48 +00:00
|
|
|
|
|
|
|
import django.db.models.deletion
|
|
|
|
from django.db import migrations, models
|
|
|
|
|
|
|
|
|
|
|
|
class Migration(migrations.Migration):
|
|
|
|
|
|
|
|
initial = True
|
|
|
|
|
|
|
|
dependencies = [
|
2019-12-31 11:51:16 +00:00
|
|
|
("passbook_core", "0001_initial"),
|
|
|
|
("oidc_provider", "0026_client_multiple_response_types"),
|
2019-07-05 13:21:48 +00:00
|
|
|
]
|
|
|
|
|
|
|
|
operations = [
|
|
|
|
migrations.CreateModel(
|
2019-12-31 11:51:16 +00:00
|
|
|
name="OpenIDProvider",
|
2019-07-05 13:21:48 +00:00
|
|
|
fields=[
|
2019-12-31 11:51:16 +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",
|
|
|
|
),
|
|
|
|
),
|
|
|
|
(
|
|
|
|
"oidc_client",
|
|
|
|
models.OneToOneField(
|
|
|
|
on_delete=django.db.models.deletion.CASCADE,
|
|
|
|
to="oidc_provider.Client",
|
|
|
|
),
|
|
|
|
),
|
2019-07-05 13:21:48 +00:00
|
|
|
],
|
2019-10-07 14:33:48 +00:00
|
|
|
options={
|
2019-12-31 11:51:16 +00:00
|
|
|
"verbose_name": "OpenID Provider",
|
|
|
|
"verbose_name_plural": "OpenID Providers",
|
2019-10-07 14:33:48 +00:00
|
|
|
},
|
2019-12-31 11:51:16 +00:00
|
|
|
bases=("passbook_core.provider",),
|
2019-07-05 13:21:48 +00:00
|
|
|
),
|
|
|
|
]
|