This commit is contained in:
j 2010-09-13 17:19:38 +02:00
commit 43837ff529
2 changed files with 3 additions and 3 deletions

View file

@ -887,7 +887,7 @@ class Stream(models.Model):
class PosterUrl(models.Model):
class Meta:
unique_together = ("movie", "service", "url")
ordering = ('height', )
ordering = ('-height', )
movie = models.ForeignKey(Movie, related_name='poster_urls')
url = models.CharField(max_length=1024)