From 25da206c38e21e0fdc05aabcf7d3f2af6bf5b2aa Mon Sep 17 00:00:00 2001 From: Feanil Patel Date: Sun, 27 May 2018 16:28:51 +0000 Subject: [PATCH] Migration for index removal. --- .../migrations/0006_remove_module_id_index.py | 21 +++++++++++++++++++ 1 file changed, 21 insertions(+) create mode 100644 lms/djangoapps/courseware/migrations/0006_remove_module_id_index.py diff --git a/lms/djangoapps/courseware/migrations/0006_remove_module_id_index.py b/lms/djangoapps/courseware/migrations/0006_remove_module_id_index.py new file mode 100644 index 0000000000..54a113b9d9 --- /dev/null +++ b/lms/djangoapps/courseware/migrations/0006_remove_module_id_index.py @@ -0,0 +1,21 @@ +# -*- coding: utf-8 -*- +# Generated by Django 1.11.13 on 2018-05-27 16:27 +from __future__ import unicode_literals + +from django.db import migrations +import opaque_keys.edx.django.models + + +class Migration(migrations.Migration): + + dependencies = [ + ('courseware', '0005_orgdynamicupgradedeadlineconfiguration'), + ] + + operations = [ + migrations.AlterField( + model_name='studentmodule', + name='module_state_key', + field=opaque_keys.edx.django.models.UsageKeyField(db_column=b'module_id', max_length=255), + ), + ]