Commit 026a614b by David Ormsbee

Make Video.client_video_id optional.

parent de70cb52
...@@ -79,7 +79,7 @@ class Video(models.Model): ...@@ -79,7 +79,7 @@ class Video(models.Model):
), ),
] ]
) )
client_video_id = models.CharField(max_length=255, db_index=True) client_video_id = models.CharField(max_length=255, db_index=True, blank=True)
duration = models.FloatField(validators=[MinValueValidator(0)]) duration = models.FloatField(validators=[MinValueValidator(0)])
def get_absolute_url(self): def get_absolute_url(self):
......
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