blob: 204b6155bba2dda63c95ce30c6055691cb7da607 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
|
# Generated by Django 3.0.8 on 2020-07-15 22:30
from django.db import migrations, models
class Migration(migrations.Migration):
dependencies = [
('caas', '0008_auto_20200711_1127'),
]
operations = [
migrations.AlterField(
model_name='location',
name='fuze_spm_site_type',
field=models.CharField(choices=[('SAP', 'SAP'), ('DRAN', 'DRAN'), ('CRAN', 'CRAN')], max_length=4),
),
]
|