summaryrefslogtreecommitdiff
path: root/src/orchestration/migrations/0015_auto_20200707_2034.py
diff options
context:
space:
mode:
authorckonstanski <kostcarl@isu.edu>2026-07-30 18:17:14 -0600
committerckonstanski <kostcarl@isu.edu>2026-07-30 18:17:14 -0600
commit640ff61422bc0ee3966941b93d9889ddbbd38d77 (patch)
treeabf1c08f5d38ee53ec8b29dc4f425722517505e6 /src/orchestration/migrations/0015_auto_20200707_2034.py
parent22dae02a86c1fce71091bfa5289cf99abba1b217 (diff)
more filesHEADmaster
Diffstat (limited to 'src/orchestration/migrations/0015_auto_20200707_2034.py')
-rw-r--r--src/orchestration/migrations/0015_auto_20200707_2034.py23
1 files changed, 23 insertions, 0 deletions
diff --git a/src/orchestration/migrations/0015_auto_20200707_2034.py b/src/orchestration/migrations/0015_auto_20200707_2034.py
new file mode 100644
index 0000000..7288f9a
--- /dev/null
+++ b/src/orchestration/migrations/0015_auto_20200707_2034.py
@@ -0,0 +1,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),
+ ),
+ ]