Update repository URL to Gitea and sync structural changes

This commit is contained in:
2026-01-05 15:57:24 +09:00
parent 51ef1ee459
commit 1167e60c36
12 changed files with 318 additions and 376 deletions

18
model.py Normal file
View File

@@ -0,0 +1,18 @@
# -*- coding: utf-8 -*-
# @Time : 2023/02/25 7:55 PM
# @Author : yommi
# @Site :
# @File : model
# @Software: PyCharm
# @Path : youtube-dl/model.py
from .setup import *
class ModelYoutubeDlItem(ModelBase):
P = P
__tablename__ = "youtube_dl_item"
__table_args__ = {"mysql_collate": "utf8_general_ci"}
__bind_key__ = P.package_name
id = db.Column(db.Integer, primary_key=True)