Skip to content
This repository has been archived by the owner on Oct 1, 2020. It is now read-only.

Commit

Permalink
Merge pull request #87 from edx/mrehan/legthen-org
Browse files Browse the repository at this point in the history
Increase Org length
  • Loading branch information
Qubad786 committed Feb 13, 2018
2 parents e4a89c4 + ff28885 commit 9b01667
Show file tree
Hide file tree
Showing 2 changed files with 21 additions and 1 deletion.
20 changes: 20 additions & 0 deletions VEDA_OS01/migrations/0007_auto_20180213_0746.py
Original file line number Diff line number Diff line change
@@ -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'),
),
]
2 changes: 1 addition & 1 deletion VEDA_OS01/models.py
Original file line number Diff line number Diff line change
Expand Up @@ -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',
Expand Down

0 comments on commit 9b01667

Please sign in to comment.