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.
authentik/passbook/policies/hibp/migrations/0001_initial.py

39 lines
1.1 KiB
Python
Raw Normal View History

# Generated by Django 3.0.6 on 2020-05-19 22:08
import django.db.models.deletion
from django.db import migrations, models
class Migration(migrations.Migration):
initial = True
dependencies = [
("passbook_policies", "0001_initial"),
]
operations = [
migrations.CreateModel(
2019-12-31 11:51:16 +00:00
name="HaveIBeenPwendPolicy",
fields=[
2019-12-31 11:51:16 +00:00
(
"policy_ptr",
models.OneToOneField(
auto_created=True,
on_delete=django.db.models.deletion.CASCADE,
parent_link=True,
primary_key=True,
serialize=False,
to="passbook_policies.Policy",
2019-12-31 11:51:16 +00:00
),
),
("allowed_count", models.IntegerField(default=0)),
],
options={
2019-12-31 11:51:16 +00:00
"verbose_name": "Have I Been Pwned Policy",
"verbose_name_plural": "Have I Been Pwned Policies",
},
bases=("passbook_policies.policy",),
),
]