35 lines
		
	
	
		
			1023 B
		
	
	
	
		
			Python
		
	
	
	
	
	
			
		
		
	
	
			35 lines
		
	
	
		
			1023 B
		
	
	
	
		
			Python
		
	
	
	
	
	
| # Generated by Django 3.1 on 2020-08-27 21:08
 | |
| 
 | |
| import django.contrib.postgres.fields
 | |
| from django.db import migrations, models
 | |
| 
 | |
| 
 | |
| class Migration(migrations.Migration):
 | |
| 
 | |
|     dependencies = [
 | |
|         ("passbook_outposts", "0002_auto_20200826_1306"),
 | |
|     ]
 | |
| 
 | |
|     operations = [
 | |
|         migrations.AddField(
 | |
|             model_name="outpost",
 | |
|             name="deployment_type",
 | |
|             field=models.TextField(
 | |
|                 choices=[
 | |
|                     ("docker_compose", "Docker Compose"),
 | |
|                     ("kubernetes", "Kubernetes"),
 | |
|                     ("custom", "Custom"),
 | |
|                 ],
 | |
|                 default="custom",
 | |
|                 help_text="Select between passbook-managed deployment types or a custom deployment.",
 | |
|             ),
 | |
|         ),
 | |
|         migrations.AlterField(
 | |
|             model_name="outpost",
 | |
|             name="channels",
 | |
|             field=django.contrib.postgres.fields.ArrayField(
 | |
|                 base_field=models.TextField(), default=list, size=None
 | |
|             ),
 | |
|         ),
 | |
|     ]
 | 
