Files
edx-platform/lms/djangoapps/verified_track_content/migrations/0001_initial.py
2016-10-06 14:50:40 -04:00

23 lines
738 B
Python

# -*- coding: utf-8 -*-
from __future__ import unicode_literals
from django.db import migrations, models
from openedx.core.djangoapps.xmodule_django.models import CourseKeyField
class Migration(migrations.Migration):
dependencies = [
]
operations = [
migrations.CreateModel(
name='VerifiedTrackCohortedCourse',
fields=[
('id', models.AutoField(verbose_name='ID', serialize=False, auto_created=True, primary_key=True)),
('course_key', CourseKeyField(help_text='The course key for the course we would like to be auto-cohorted.', unique=True, max_length=255, db_index=True)),
('enabled', models.BooleanField()),
],
),
]