30 lines
840 B
Python
30 lines
840 B
Python
# Generated by Django 3.0.6 on 2020-05-23 11:33
|
|
|
|
from django.db import migrations, models
|
|
|
|
|
|
class Migration(migrations.Migration):
|
|
|
|
dependencies = [
|
|
("passbook_flows", "0001_initial"),
|
|
]
|
|
|
|
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,
|
|
),
|
|
),
|
|
]
|