22 lines
691 B
Python
22 lines
691 B
Python
# -*- coding: utf-8 -*-
|
|
from __future__ import unicode_literals
|
|
|
|
from django.db import migrations, models
|
|
from django.conf import settings
|
|
|
|
|
|
class Migration(migrations.Migration):
|
|
|
|
dependencies = [
|
|
migrations.swappable_dependency(settings.AUTH_USER_MODEL),
|
|
('student', '0013_delete_historical_enrollment_records'),
|
|
]
|
|
|
|
operations = [
|
|
migrations.AddField(
|
|
model_name='courseenrollmentallowed',
|
|
name='user',
|
|
field=models.ForeignKey(blank=True, to=settings.AUTH_USER_MODEL, help_text="First user which enrolled in the specified course through the specified e-mail. Once set, it won't change.", null=True),
|
|
),
|
|
]
|