edited flag for names and titles

This commit is contained in:
j 2011-10-11 17:01:11 +02:00
commit 634190cca6
4 changed files with 4 additions and 0 deletions

View file

@ -18,6 +18,7 @@ def get_title_sort(title):
class Title(models.Model):
title = models.CharField(max_length=1000, unique=True)
title_sort = models.CharField(max_length=1000)
edited = models.BooleanField(default=False)
imdbId = models.CharField(max_length=7, blank=True)