* feat: added mobile configs in enrollments api Mobile team needs some cnfigs after user has logged in, enrollment api seems to be the best place to put this data. They can change these flags or values from admin side. LEARNER-9039
26 lines
939 B
Python
26 lines
939 B
Python
# Generated by Django 3.2.15 on 2022-09-23 14:17
|
|
|
|
from django.db import migrations, models
|
|
import django.utils.timezone
|
|
import model_utils.fields
|
|
|
|
|
|
class Migration(migrations.Migration):
|
|
|
|
dependencies = [
|
|
('mobile_api', '0003_ignore_mobile_available_flag'),
|
|
]
|
|
|
|
operations = [
|
|
migrations.CreateModel(
|
|
name='MobileConfig',
|
|
fields=[
|
|
('id', models.AutoField(auto_created=True, primary_key=True, serialize=False, verbose_name='ID')),
|
|
('created', model_utils.fields.AutoCreatedField(default=django.utils.timezone.now, editable=False, verbose_name='created')),
|
|
('modified', model_utils.fields.AutoLastModifiedField(default=django.utils.timezone.now, editable=False, verbose_name='modified')),
|
|
('name', models.CharField(max_length=255)),
|
|
('value', models.CharField(max_length=255)),
|
|
],
|
|
),
|
|
]
|