Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
E
edx-video-pipeline
Overview
Overview
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
edx
edx-video-pipeline
Commits
d6c03c48
Unverified
Commit
d6c03c48
authored
Jan 16, 2018
by
Mushtaq Ali
Committed by
GitHub
Jan 16, 2018
Browse files
Options
Browse Files
Download
Plain Diff
Merge pull request #83 from edx/mushtaq/fix-edx-id-max-len
Make edx id textfield
parents
fcb98f5a
96fb1e68
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
3 additions
and
3 deletions
+3
-3
VEDA_OS01/migrations/0006_auto_20180116_0939.py
+2
-2
VEDA_OS01/models.py
+1
-1
No files found.
VEDA_OS01/migrations/0006_auto_2018011
5_0815
.py
→
VEDA_OS01/migrations/0006_auto_2018011
6_0939
.py
View file @
d6c03c48
# -*- coding: utf-8 -*-
# Generated by Django 1.9 on 2018-01-1
5 08:15
# Generated by Django 1.9 on 2018-01-1
6 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'
),
),
]
VEDA_OS01/models.py
View file @
d6c03c48
...
...
@@ -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
,
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment