v0.7.2: Linkkf subtitle download, list-request integration, and hot reload stability improvements

This commit is contained in:
2026-01-11 16:56:35 +09:00
parent 8e3594386d
commit 9b3f4f72bd
7 changed files with 132 additions and 41 deletions

View File

@@ -3447,7 +3447,7 @@ class Ohli24QueueEntity(AnimeQueueEntity):
class ModelOhli24Item(ModelBase):
P = P
__tablename__ = "{package_name}_ohli24_item".format(package_name=P.package_name)
__table_args__ = {"mysql_collate": "utf8_general_ci"}
__table_args__ = {"mysql_collate": "utf8_general_ci", "extend_existing": True}
__bind_key__ = P.package_name
id = db.Column(db.Integer, primary_key=True)
created_time = db.Column(db.DateTime)
@@ -3603,7 +3603,7 @@ class ModelOhli24Item(ModelBase):
class ModelOhli24Program(ModelBase):
P = P
__tablename__ = f"{P.package_name}_{name}_program"
__table_args__ = {"mysql_collate": "utf8_general_ci"}
__table_args__ = {"mysql_collate": "utf8_general_ci", "extend_existing": True}
__bind_key__ = P.package_name
id = db.Column(db.Integer, primary_key=True)