Commit 0ba637af by Mushtaq Ali

Increase length of edx_id field

parent d7d046fd
# -*- coding: utf-8 -*-
# Generated by Django 1.9 on 2018-01-15 08:15
from __future__ import unicode_literals
from django.db import migrations, models
class Migration(migrations.Migration):
dependencies = [
('VEDA_OS01', '0005_auto_20171127_0856'),
]
operations = [
migrations.AlterField(
model_name='video',
name='edx_id',
field=models.CharField(max_length=255, 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=20)
edx_id = models.CharField('VEDA Video ID', max_length=255)
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