25 lines
		
	
	
		
			578 B
		
	
	
	
		
			Python
		
	
	
	
	
	
			
		
		
	
	
			25 lines
		
	
	
		
			578 B
		
	
	
	
		
			Python
		
	
	
	
	
	
| # Generated by Django 3.0.7 on 2020-07-05 21:11
 | |
| 
 | |
| from django.db import migrations, models
 | |
| 
 | |
| 
 | |
| class Migration(migrations.Migration):
 | |
| 
 | |
|     dependencies = [
 | |
|         ("passbook_core", "0004_auto_20200703_2213"),
 | |
|     ]
 | |
| 
 | |
|     operations = [
 | |
|         migrations.AddField(
 | |
|             model_name="token",
 | |
|             name="intent",
 | |
|             field=models.TextField(
 | |
|                 choices=[
 | |
|                     ("verification", "Intent Verification"),
 | |
|                     ("api", "Intent Api"),
 | |
|                 ],
 | |
|                 default="verification",
 | |
|             ),
 | |
|         ),
 | |
|     ]
 | 
