1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
|
# Generated by Django 3.0.8 on 2020-07-07 20:34
from django.db import migrations, models
class Migration(migrations.Migration):
dependencies = [
('orchestration', '0014_remoteregionsetup_transaction_id'),
]
operations = [
migrations.AddField(
model_name='remoteregionsetup',
name='message',
field=models.CharField(max_length=255, null=True),
),
migrations.AddField(
model_name='remoteregionsetup',
name='status',
field=models.CharField(choices=[('STARTED', 'STARTED'), ('CREATING', 'CREATING'), ('COMPLETE', 'COMPLETE'), ('FAILED', 'FAILED')], max_length=9, null=True),
),
]
|