blob: d624ebfcd73b9798ad7d32c086928c821b49d7de (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
|
# Generated by Django 3.0.5 on 2020-04-30 00:36
from django.db import migrations, models
class Migration(migrations.Migration):
dependencies = [
('orchestration', '0005_auto_20200429_1836'),
]
operations = [
migrations.AlterField(
model_name='remoteregionsetup',
name='kubeconfig',
field=models.TextField(blank=True, default='', max_length=16777215, null=True),
),
]
|