Unverified Commit d6c03c48 by Mushtaq Ali Committed by GitHub

Merge pull request #83 from edx/mushtaq/fix-edx-id-max-len

Make edx id textfield
parents fcb98f5a 96fb1e68
# -*- 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
......@@ -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'),
),
]
......@@ -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,
......
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