2020-05-20 07:17:06 +00:00
|
|
|
# Generated by Django 3.0.6 on 2020-05-19 22:08
|
2020-05-10 00:14:55 +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"),
|
2020-05-10 00:14:55 +00:00
|
|
|
]
|
|
|
|
|
|
|
|
operations = [
|
|
|
|
migrations.CreateModel(
|
|
|
|
name="DummyPolicy",
|
|
|
|
fields=[
|
|
|
|
(
|
|
|
|
"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",
|
2020-05-10 00:14:55 +00:00
|
|
|
),
|
|
|
|
),
|
|
|
|
("result", models.BooleanField(default=False)),
|
|
|
|
("wait_min", models.IntegerField(default=5)),
|
|
|
|
("wait_max", models.IntegerField(default=30)),
|
|
|
|
],
|
|
|
|
options={
|
|
|
|
"verbose_name": "Dummy Policy",
|
|
|
|
"verbose_name_plural": "Dummy Policies",
|
|
|
|
},
|
2020-05-16 16:07:00 +00:00
|
|
|
bases=("passbook_policies.policy",),
|
2020-05-10 00:14:55 +00:00
|
|
|
),
|
|
|
|
]
|