diff options
Diffstat (limited to 'src/orchestration/migrations/0010_centralregiontoremoteregionmap.py')
| -rw-r--r-- | src/orchestration/migrations/0010_centralregiontoremoteregionmap.py | 21 |
1 files changed, 21 insertions, 0 deletions
diff --git a/src/orchestration/migrations/0010_centralregiontoremoteregionmap.py b/src/orchestration/migrations/0010_centralregiontoremoteregionmap.py new file mode 100644 index 0000000..905f71c --- /dev/null +++ b/src/orchestration/migrations/0010_centralregiontoremoteregionmap.py @@ -0,0 +1,21 @@ +# Generated by Django 3.0.5 on 2020-05-29 19:43 + +from django.db import migrations, models + + +class Migration(migrations.Migration): + + dependencies = [ + ('orchestration', '0009_auto_20200529_1929'), + ] + + operations = [ + migrations.CreateModel( + name='CentralRegionToRemoteRegionMap', + fields=[ + ('id', models.AutoField(auto_created=True, primary_key=True, serialize=False, verbose_name='ID')), + ('central_region_name', models.CharField(max_length=64)), + ('remote_region_name', models.CharField(max_length=64)), + ], + ), + ] |
