22 lines
550 B
Python
22 lines
550 B
Python
# Generated by Django 3.0.3 on 2020-05-07 19:18
|
|
|
|
from django.db import migrations, models
|
|
|
|
|
|
class Migration(migrations.Migration):
|
|
|
|
dependencies = [
|
|
("passbook_flows", "0001_initial"),
|
|
]
|
|
|
|
operations = [
|
|
migrations.AddField(
|
|
model_name="flowfactorbinding",
|
|
name="re_evaluate_policies",
|
|
field=models.BooleanField(
|
|
default=False,
|
|
help_text="When this option is enabled, the planner will re-evaluate policies bound to this.",
|
|
),
|
|
),
|
|
]
|