MICROBA-666 Add migration for executive education mode (#25631)

This commit is contained in:
Christie Rice
2020-11-18 13:18:27 -05:00
committed by GitHub
parent 99021bb7c3
commit 852d61eaff

View File

@@ -0,0 +1,28 @@
# Generated by Django 2.2.17 on 2020-11-18 17:25
from django.db import migrations, models
class Migration(migrations.Migration):
dependencies = [
('certificates', '0016_historicalgeneratedcertificate'),
]
operations = [
migrations.AlterField(
model_name='certificatetemplate',
name='mode',
field=models.CharField(blank=True, choices=[('verified', 'verified'), ('honor', 'honor'), ('audit', 'audit'), ('professional', 'professional'), ('no-id-professional', 'no-id-professional'), ('masters', 'masters'), ('executive-education', 'executive-education')], default='honor', help_text='The course mode for this template.', max_length=125, null=True),
),
migrations.AlterField(
model_name='generatedcertificate',
name='mode',
field=models.CharField(choices=[('verified', 'verified'), ('honor', 'honor'), ('audit', 'audit'), ('professional', 'professional'), ('no-id-professional', 'no-id-professional'), ('masters', 'masters'), ('executive-education', 'executive-education')], default='honor', max_length=32),
),
migrations.AlterField(
model_name='historicalgeneratedcertificate',
name='mode',
field=models.CharField(choices=[('verified', 'verified'), ('honor', 'honor'), ('audit', 'audit'), ('professional', 'professional'), ('no-id-professional', 'no-id-professional'), ('masters', 'masters'), ('executive-education', 'executive-education')], default='honor', max_length=32),
),
]