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-06-07 14:35:08 +00:00
|
|
|
# Generated by Django 3.0.6 on 2020-05-23 11:33
|
|
|
|
|
|
|
|
from django.db import migrations, models
|
|
|
|
|
|
|
|
|
|
|
|
class Migration(migrations.Migration):
|
|
|
|
|
|
|
|
dependencies = [
|
2020-07-03 21:34:44 +00:00
|
|
|
("passbook_flows", "0001_initial"),
|
2020-06-07 14:35:08 +00:00
|
|
|
]
|
|
|
|
|
|
|
|
operations = [
|
|
|
|
migrations.AlterField(
|
|
|
|
model_name="flow",
|
|
|
|
name="designation",
|
|
|
|
field=models.CharField(
|
|
|
|
choices=[
|
|
|
|
("authentication", "Authentication"),
|
|
|
|
("authorization", "Authorization"),
|
|
|
|
("invalidation", "Invalidation"),
|
|
|
|
("enrollment", "Enrollment"),
|
|
|
|
("unenrollment", "Unrenollment"),
|
|
|
|
("recovery", "Recovery"),
|
|
|
|
("password_change", "Password Change"),
|
|
|
|
],
|
|
|
|
max_length=100,
|
|
|
|
),
|
|
|
|
),
|
|
|
|
]
|