You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 

26 lines
999 B

# Generated by Django 2.0.7 on 2019-09-25 17:23
from django.conf import settings
from django.db import migrations, models
import django.db.models.deletion
class Migration(migrations.Migration):
dependencies = [
('course', '0050_auto_20190818_1043'),
migrations.swappable_dependency(settings.AUTH_USER_MODEL),
('notification', '0002_usernotification_camp_certificate_last_email'),
]
operations = [
migrations.CreateModel(
name='CourseNotification',
fields=[
('id', models.AutoField(auto_created=True, primary_key=True, serialize=False, verbose_name='ID')),
('access_expire_last_email', models.DateTimeField(blank=True, null=True)),
('course', models.ForeignKey(on_delete=django.db.models.deletion.CASCADE, to='course.Course')),
('user', models.ForeignKey(on_delete=django.db.models.deletion.CASCADE, to=settings.AUTH_USER_MODEL)),
],
),
]