27 lines
		
	
	
		
			682 B
		
	
	
	
		
			Python
		
	
	
	
	
	
			
		
		
	
	
			27 lines
		
	
	
		
			682 B
		
	
	
	
		
			Python
		
	
	
	
	
	
| # Generated by Django 3.0.3 on 2020-05-09 12:58
 | |
| 
 | |
| from django.db import migrations, models
 | |
| 
 | |
| 
 | |
| class Migration(migrations.Migration):
 | |
| 
 | |
|     dependencies = [
 | |
|         ("passbook_flows", "0002_default_flows"),
 | |
|     ]
 | |
| 
 | |
|     operations = [
 | |
|         migrations.AlterField(
 | |
|             model_name="flow",
 | |
|             name="designation",
 | |
|             field=models.CharField(
 | |
|                 choices=[
 | |
|                     ("authentication", "Authentication"),
 | |
|                     ("enrollment", "Enrollment"),
 | |
|                     ("recovery", "Recovery"),
 | |
|                     ("password_change", "Password Change"),
 | |
|                 ],
 | |
|                 max_length=100,
 | |
|             ),
 | |
|         ),
 | |
|     ]
 | 
