41 lines
1.2 KiB
Python
41 lines
1.2 KiB
Python
|
# Generated by Django 3.0.5 on 2020-05-10 00:08
|
||
|
|
||
|
import django.db.models.deletion
|
||
|
from django.db import migrations, models
|
||
|
|
||
|
|
||
|
class Migration(migrations.Migration):
|
||
|
|
||
|
initial = True
|
||
|
|
||
|
dependencies = [
|
||
|
("passbook_core", "0013_delete_debugpolicy"),
|
||
|
]
|
||
|
|
||
|
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,
|
||
|
to="passbook_core.Policy",
|
||
|
),
|
||
|
),
|
||
|
("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",
|
||
|
},
|
||
|
bases=("passbook_core.policy",),
|
||
|
),
|
||
|
]
|