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 #83 from edx/mushtaq/fix-edx-id-max-len
Browse files Browse the repository at this point in the history
Make edx id textfield
  • Loading branch information
Mushtaq Ali authored Jan 16, 2018
2 parents fcb98f5 + 96fb1e6 commit d6c03c4
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
# -*- coding: utf-8 -*-
# Generated by Django 1.9 on 2018-01-15 08:15
# Generated by Django 1.9 on 2018-01-16 09:39
from __future__ import unicode_literals

from django.db import migrations, models
Expand All @@ -15,6 +15,6 @@ class Migration(migrations.Migration):
migrations.AlterField(
model_name='video',
name='edx_id',
field=models.CharField(max_length=255, verbose_name=b'VEDA Video ID'),
field=models.TextField(verbose_name=b'VEDA Video ID'),
),
]
2 changes: 1 addition & 1 deletion VEDA_OS01/models.py
Original file line number Diff line number Diff line change
Expand Up @@ -434,7 +434,7 @@ class Video(models.Model):
max_length=180,
null=True, blank=True
)
edx_id = models.CharField('VEDA Video ID', max_length=255)
edx_id = models.TextField('VEDA Video ID')
studio_id = models.CharField(
'Studio Upload ID',
max_length=100,
Expand Down

0 comments on commit d6c03c4

Please sign in to comment.