Commit 8a67f903 authored by Seb's avatar Seb
Browse files

Remove unique constraint

parent 120ad6b6
This diff is collapsed.
This diff is collapsed.
...@@ -365,7 +365,7 @@ class AbstractVideoTrack(Orderable): ...@@ -365,7 +365,7 @@ class AbstractVideoTrack(Orderable):
language = models.CharField( language = models.CharField(
max_length=50, max_length=50,
choices=[(v, k) for k, v in bcp47.languages.items()], choices=[(v, k) for k, v in bcp47.languages.items()],
default='en', blank=True, help_text='Required if type is "Subtitle"', unique=True) default='en', blank=True, help_text='Required if type is "Subtitle"')
def track_tag(self): def track_tag(self):
attrs = { attrs = {
......
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