2019-10-07 14:33:48 +00:00
|
|
|
# Generated by Django 2.2.6 on 2019-10-07 14:07
|
2019-03-20 21:42:47 +00:00
|
|
|
|
|
|
|
import django.contrib.postgres.fields
|
|
|
|
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"),
|
2019-03-20 21:42:47 +00:00
|
|
|
]
|
|
|
|
|
|
|
|
operations = [
|
|
|
|
migrations.CreateModel(
|
2019-12-31 11:51:16 +00:00
|
|
|
name="ApplicationGatewayProvider",
|
2019-03-20 21:42:47 +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",
|
|
|
|
),
|
|
|
|
),
|
|
|
|
(
|
|
|
|
"server_name",
|
|
|
|
django.contrib.postgres.fields.ArrayField(
|
|
|
|
base_field=models.TextField(), size=None
|
|
|
|
),
|
|
|
|
),
|
|
|
|
(
|
|
|
|
"upstream",
|
|
|
|
django.contrib.postgres.fields.ArrayField(
|
|
|
|
base_field=models.TextField(), size=None
|
|
|
|
),
|
|
|
|
),
|
|
|
|
("enabled", models.BooleanField(default=True)),
|
|
|
|
(
|
|
|
|
"authentication_header",
|
|
|
|
models.TextField(blank=True, default="X-Remote-User"),
|
|
|
|
),
|
|
|
|
(
|
|
|
|
"default_content_type",
|
|
|
|
models.TextField(default="application/octet-stream"),
|
|
|
|
),
|
|
|
|
("upstream_ssl_verification", models.BooleanField(default=True)),
|
2019-03-20 21:42:47 +00:00
|
|
|
],
|
|
|
|
options={
|
2019-12-31 11:51:16 +00:00
|
|
|
"verbose_name": "Application Gateway Provider",
|
|
|
|
"verbose_name_plural": "Application Gateway Providers",
|
2019-03-20 21:42:47 +00:00
|
|
|
},
|
2019-12-31 11:51:16 +00:00
|
|
|
bases=("passbook_core.provider",),
|
2019-03-20 21:42:47 +00:00
|
|
|
),
|
|
|
|
migrations.CreateModel(
|
2019-12-31 11:51:16 +00:00
|
|
|
name="RewriteRule",
|
2019-03-20 21:42:47 +00:00
|
|
|
fields=[
|
2019-12-31 11:51:16 +00:00
|
|
|
(
|
|
|
|
"propertymapping_ptr",
|
|
|
|
models.OneToOneField(
|
|
|
|
auto_created=True,
|
|
|
|
on_delete=django.db.models.deletion.CASCADE,
|
|
|
|
parent_link=True,
|
|
|
|
primary_key=True,
|
|
|
|
serialize=False,
|
|
|
|
to="passbook_core.PropertyMapping",
|
|
|
|
),
|
|
|
|
),
|
|
|
|
("match", models.TextField()),
|
|
|
|
("halt", models.BooleanField(default=False)),
|
|
|
|
("replacement", models.TextField()),
|
|
|
|
(
|
|
|
|
"redirect",
|
|
|
|
models.CharField(
|
|
|
|
choices=[
|
|
|
|
("internal", "Internal"),
|
|
|
|
(301, "Moved Permanently"),
|
|
|
|
(302, "Found"),
|
|
|
|
],
|
|
|
|
max_length=50,
|
|
|
|
),
|
|
|
|
),
|
|
|
|
(
|
|
|
|
"conditions",
|
|
|
|
models.ManyToManyField(blank=True, to="passbook_core.Policy"),
|
|
|
|
),
|
2019-03-20 21:42:47 +00:00
|
|
|
],
|
|
|
|
options={
|
2019-12-31 11:51:16 +00:00
|
|
|
"verbose_name": "Rewrite Rule",
|
|
|
|
"verbose_name_plural": "Rewrite Rules",
|
2019-03-20 21:42:47 +00:00
|
|
|
},
|
2019-12-31 11:51:16 +00:00
|
|
|
bases=("passbook_core.propertymapping",),
|
2019-03-20 21:42:47 +00:00
|
|
|
),
|
|
|
|
]
|