[patch] 优化版本管理显示 与 更新提示(修改表名信息)

This commit is contained in:
2025-10-10 11:53:56 +08:00
parent bb5ef9ccbf
commit c819bdaa1c
5 changed files with 289 additions and 27 deletions

View File

@@ -167,7 +167,7 @@ class DatabaseVersionManager:
try:
cursor = self.conn.cursor()
cursor.execute("""
SELECT version FROM web_versionhistory
SELECT version FROM web_version_history
WHERE type = '水滴智能通讯插件' AND is_delete = FALSE
ORDER BY release_time DESC LIMIT 1
""")
@@ -211,7 +211,7 @@ class DatabaseVersionManager:
try:
cursor = self.conn.cursor()
cursor.execute("""
SELECT version FROM web_versionhistory
SELECT version FROM web_version_history
WHERE content LIKE %s AND type = '水滴智能通讯插件'
ORDER BY release_time DESC LIMIT 1
""", (f'%{commit_id}%',))
@@ -241,7 +241,7 @@ class DatabaseVersionManager:
cursor = self.conn.cursor()
cursor.execute("""
INSERT INTO web_versionhistory
INSERT INTO web_version_history
(id, version, type, content, download_url, release_time, is_delete)
VALUES (%s, %s, %s, %s, %s, %s, %s)
""", (