Commit ff288858 by Qubad786

lengthen inst.

parent e4a89c4a
# -*- 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'),
),
]
...@@ -247,7 +247,7 @@ class Course(TimeStampedModel): ...@@ -247,7 +247,7 @@ class Course(TimeStampedModel):
institution = models.CharField( institution = models.CharField(
'Inst. Code', 'Inst. Code',
help_text='Organization of the course.', help_text='Organization of the course.',
max_length=50 max_length=255
) )
edx_classid = models.CharField( edx_classid = models.CharField(
'Class ID', 'Class ID',
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment