Skip to content
Snippets Groups Projects
Unverified Commit 852d61ea authored by Christie Rice's avatar Christie Rice Committed by GitHub
Browse files

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

parent 99021bb7
No related branches found
Tags release-2021-02-26-13.41
No related merge requests found
# 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),
),
]
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment