|
|
|
@ -441,7 +441,7 @@ class MediaElement(db.Entity, Tagable):
|
|
|
|
orm.composite_index(extractor_name, extractor_key)
|
|
|
|
orm.composite_index(extractor_name, extractor_key)
|
|
|
|
last_updated: datetime = orm.Optional(datetime)
|
|
|
|
last_updated: datetime = orm.Optional(datetime)
|
|
|
|
|
|
|
|
|
|
|
|
watched: bool = orm.Required(bool, default=False)
|
|
|
|
watched: bool = orm.Required(bool, column="watched", default=False)
|
|
|
|
ignored: bool = orm.Required(bool, column="ignored", default=False)
|
|
|
|
ignored: bool = orm.Required(bool, column="ignored", default=False)
|
|
|
|
progress: int = orm.Required(int, default=0)
|
|
|
|
progress: int = orm.Required(int, default=0)
|
|
|
|
length: int = orm.Optional(int)
|
|
|
|
length: int = orm.Optional(int)
|
|
|
|
|