From 09bc3c0714a01795ae832e860dda89c715c934df Mon Sep 17 00:00:00 2001 From: Cory Lee Date: Wed, 3 Jul 2019 15:56:31 -0400 Subject: [PATCH] Add CSM drop FK migration --- .../migrations/0009_auto_20190703_1955.py | 21 +++++++++++++++++++ 1 file changed, 21 insertions(+) create mode 100644 lms/djangoapps/courseware/migrations/0009_auto_20190703_1955.py diff --git a/lms/djangoapps/courseware/migrations/0009_auto_20190703_1955.py b/lms/djangoapps/courseware/migrations/0009_auto_20190703_1955.py new file mode 100644 index 0000000000..3f0c31be33 --- /dev/null +++ b/lms/djangoapps/courseware/migrations/0009_auto_20190703_1955.py @@ -0,0 +1,21 @@ +# -*- coding: utf-8 -*- +# Generated by Django 1.11.22 on 2019-07-03 19:55 +from __future__ import unicode_literals + +from django.db import migrations, models +import django.db.models.deletion + + +class Migration(migrations.Migration): + + dependencies = [ + ('courseware', '0008_move_idde_to_edx_when'), + ] + + operations = [ + migrations.AlterField( + model_name='studentmodulehistory', + name='student_module', + field=models.ForeignKey(db_constraint=False, on_delete=django.db.models.deletion.CASCADE, to='courseware.StudentModule'), + ), + ]