|
|
|
@ -706,6 +706,7 @@ class MediaCollection(db.Entity, Tagable):
|
|
|
|
keep_updated: bool = orm.Required(
|
|
|
|
keep_updated: bool = orm.Required(
|
|
|
|
bool,
|
|
|
|
bool,
|
|
|
|
default=False,
|
|
|
|
default=False,
|
|
|
|
|
|
|
|
index=True,
|
|
|
|
)
|
|
|
|
)
|
|
|
|
watch_in_order_auto: bool = orm.Required(
|
|
|
|
watch_in_order_auto: bool = orm.Required(
|
|
|
|
bool,
|
|
|
|
bool,
|
|
|
|
@ -715,6 +716,7 @@ class MediaCollection(db.Entity, Tagable):
|
|
|
|
pinned: bool = orm.Required(
|
|
|
|
pinned: bool = orm.Required(
|
|
|
|
bool,
|
|
|
|
bool,
|
|
|
|
default=False,
|
|
|
|
default=False,
|
|
|
|
|
|
|
|
index=True,
|
|
|
|
)
|
|
|
|
)
|
|
|
|
ignored: bool = orm.Required(
|
|
|
|
ignored: bool = orm.Required(
|
|
|
|
bool,
|
|
|
|
bool,
|
|
|
|
@ -723,6 +725,7 @@ class MediaCollection(db.Entity, Tagable):
|
|
|
|
watch_in_order: bool = orm.Required(
|
|
|
|
watch_in_order: bool = orm.Required(
|
|
|
|
bool,
|
|
|
|
bool,
|
|
|
|
default=True,
|
|
|
|
default=True,
|
|
|
|
|
|
|
|
index=True,
|
|
|
|
)
|
|
|
|
)
|
|
|
|
|
|
|
|
|
|
|
|
tag_list: Iterable[Tag] = orm.Set(
|
|
|
|
tag_list: Iterable[Tag] = orm.Set(
|
|
|
|
|