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.
2020-05-12 12:50:00 +00:00
|
|
|
# Generated by Django 3.0.5 on 2020-05-12 11:58
|
|
|
|
|
|
|
|
from django.db import migrations, models
|
|
|
|
|
|
|
|
|
|
|
|
class Migration(migrations.Migration):
|
|
|
|
|
|
|
|
dependencies = [
|
2020-05-12 13:21:53 +00:00
|
|
|
("passbook_flows", "0004_auto_20200510_2310"),
|
2020-05-12 12:50:00 +00:00
|
|
|
]
|
|
|
|
|
|
|
|
operations = [
|
|
|
|
migrations.AlterField(
|
2020-05-12 13:21:53 +00:00
|
|
|
model_name="flow",
|
|
|
|
name="designation",
|
|
|
|
field=models.CharField(
|
|
|
|
choices=[
|
|
|
|
("authentication", "Authentication"),
|
|
|
|
("invalidation", "Invalidation"),
|
|
|
|
("enrollment", "Enrollment"),
|
|
|
|
("unenrollment", "Unrenollment"),
|
|
|
|
("recovery", "Recovery"),
|
|
|
|
("password_change", "Password Change"),
|
|
|
|
],
|
|
|
|
max_length=100,
|
|
|
|
),
|
2020-05-12 12:50:00 +00:00
|
|
|
),
|
|
|
|
]
|