2020-05-20 07:17:06 +00:00
|
|
|
# Generated by Django 3.0.6 on 2020-05-19 22:08
|
2019-02-25 16:21:56 +00:00
|
|
|
|
|
|
|
import django.db.models.deletion
|
|
|
|
from django.db import migrations, models
|
|
|
|
|
|
|
|
|
|
|
|
class Migration(migrations.Migration):
|
|
|
|
|
|
|
|
initial = True
|
|
|
|
|
|
|
|
dependencies = [
|
2020-05-16 16:07:00 +00:00
|
|
|
("passbook_policies", "0001_initial"),
|
2019-02-25 16:21:56 +00:00
|
|
|
]
|
|
|
|
|
|
|
|
operations = [
|
|
|
|
migrations.CreateModel(
|
2019-12-31 11:51:16 +00:00
|
|
|
name="HaveIBeenPwendPolicy",
|
2019-02-25 16:21:56 +00:00
|
|
|
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,
|
2020-05-16 16:07:00 +00:00
|
|
|
to="passbook_policies.Policy",
|
2019-12-31 11:51:16 +00:00
|
|
|
),
|
|
|
|
),
|
|
|
|
("allowed_count", models.IntegerField(default=0)),
|
2019-02-25 16:21:56 +00:00
|
|
|
],
|
|
|
|
options={
|
2019-12-31 11:51:16 +00:00
|
|
|
"verbose_name": "Have I Been Pwned Policy",
|
|
|
|
"verbose_name_plural": "Have I Been Pwned Policies",
|
2019-02-25 16:21:56 +00:00
|
|
|
},
|
2020-05-16 16:07:00 +00:00
|
|
|
bases=("passbook_policies.policy",),
|
2019-02-25 16:21:56 +00:00
|
|
|
),
|
|
|
|
]
|