Commit de70cb52 by David Ormsbee

Make the definition of EncodedVideo.url looser (so we can use it for YouTube IDs).

parent 178b545c
...@@ -127,7 +127,7 @@ class EncodedVideo(models.Model): ...@@ -127,7 +127,7 @@ class EncodedVideo(models.Model):
""" """
created = models.DateTimeField(auto_now_add=True) created = models.DateTimeField(auto_now_add=True)
modified = models.DateTimeField(auto_now=True) modified = models.DateTimeField(auto_now=True)
url = models.URLField(max_length=200) url = models.CharField(max_length=200)
file_size = models.PositiveIntegerField() file_size = models.PositiveIntegerField()
bitrate = models.PositiveIntegerField() bitrate = models.PositiveIntegerField()
......
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