22 lines
557 B
Python
22 lines
557 B
Python
# Generated by Django 3.1.3 on 2020-11-18 21:54
|
|
|
|
from django.db import migrations, models
|
|
|
|
|
|
class Migration(migrations.Migration):
|
|
|
|
dependencies = [
|
|
("passbook_outposts", "0011_docker_tls_auth"),
|
|
]
|
|
|
|
operations = [
|
|
migrations.AlterField(
|
|
model_name="outpostserviceconnection",
|
|
name="local",
|
|
field=models.BooleanField(
|
|
default=False,
|
|
help_text="If enabled, use the local connection. Required Docker socket/Kubernetes Integration",
|
|
),
|
|
),
|
|
]
|