1
0
Fork 0
mirror of https://github.com/Findus23/cr-search.git synced 2024-09-19 15:23:44 +02:00

make subtitle_hash null=True

This commit is contained in:
Lukas Winkler 2020-08-08 15:30:58 +02:00
parent dc556250d5
commit b8224790b4
Signed by: lukas
GPG key ID: 54DE4D798D244853

View file

@ -30,7 +30,7 @@ class Episode(BaseModel):
downloaded = BooleanField(default=False)
text_imported = BooleanField(default=False)
phrases_imported = BooleanField(default=False)
subtitle_hash = CharField(max_length=64)
subtitle_hash = CharField(max_length=64, null=True)
last_updated = DateTimeField(default=datetime.now)
class Meta: