diff --git a/VEDA_OS01/migrations/0007_auto_20180213_0746.py b/VEDA_OS01/migrations/0007_auto_20180213_0746.py new file mode 100644 index 0000000..5c7a673 --- /dev/null +++ b/VEDA_OS01/migrations/0007_auto_20180213_0746.py @@ -0,0 +1,20 @@ +# -*- coding: utf-8 -*- +# Generated by Django 1.9 on 2018-02-13 07:46 +from __future__ import unicode_literals + +from django.db import migrations, models + + +class Migration(migrations.Migration): + + dependencies = [ + ('VEDA_OS01', '0006_auto_20180116_0939'), + ] + + operations = [ + migrations.AlterField( + model_name='course', + name='institution', + field=models.CharField(help_text=b'Organization of the course.', max_length=255, verbose_name=b'Inst. Code'), + ), + ] diff --git a/VEDA_OS01/models.py b/VEDA_OS01/models.py index 950fa4c..efc4b5b 100644 --- a/VEDA_OS01/models.py +++ b/VEDA_OS01/models.py @@ -247,7 +247,7 @@ class Course(TimeStampedModel): institution = models.CharField( 'Inst. Code', help_text='Organization of the course.', - max_length=50 + max_length=255 ) edx_classid = models.CharField( 'Class ID',