新增TG自定义是否显示文本消息

This commit is contained in:
eoao
2025-10-23 23:55:00 +08:00
parent 7980e6a444
commit a4a1db22e8
8 changed files with 52 additions and 13 deletions

View File

@@ -39,6 +39,13 @@ const init = {
} catch (e) {
console.error(e)
}
try {
await c.env.db.prepare(`ALTER TABLE setting ADD COLUMN tg_msg_text TEXT NOT NULL DEFAULT 'hide';`).run();
} catch (e) {
console.error(e)
}
},
async v2DB(c) {