Migration for index removal.

This commit is contained in:
Feanil Patel
2018-05-27 16:28:51 +00:00
parent 06a11c2ed7
commit 25da206c38

View File

@@ -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),
),
]