summaryrefslogtreecommitdiff
path: root/src/orchestration/migrations/0010_centralregiontoremoteregionmap.py
blob: 905f71cd561c29cda512b6f6d1ed9c243bce819c (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
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)),
            ],
        ),
    ]