26 lines
		
	
	
		
			671 B
		
	
	
	
		
			Python
		
	
	
	
	
	
			
		
		
	
	
			26 lines
		
	
	
		
			671 B
		
	
	
	
		
			Python
		
	
	
	
	
	
| # Generated by Django 3.1.2 on 2020-10-03 22:39
 | |
| 
 | |
| from django.db import migrations, models
 | |
| 
 | |
| 
 | |
| class Migration(migrations.Migration):
 | |
| 
 | |
|     dependencies = [
 | |
|         ("passbook_outposts", "0005_auto_20200909_1733"),
 | |
|     ]
 | |
| 
 | |
|     operations = [
 | |
|         migrations.AlterField(
 | |
|             model_name="outpost",
 | |
|             name="deployment_type",
 | |
|             field=models.TextField(
 | |
|                 choices=[
 | |
|                     ("docker", "Docker"),
 | |
|                     ("custom", "Custom"),
 | |
|                 ],
 | |
|                 default="custom",
 | |
|                 help_text="Select between passbook-managed deployment types or a custom deployment.",
 | |
|             ),
 | |
|         ),
 | |
|     ]
 | 
