Initial commit
Some checks failed
定时更新GitHub源插件 / 自动更新GitHub插件 (push) Has been cancelled

This commit is contained in:
chorblack
2026-03-07 11:19:25 +08:00
commit e75f275ef4
4484 changed files with 645480 additions and 0 deletions

View File

@@ -0,0 +1,10 @@
CREATE TABLE IF NOT EXISTS `{prefix}comment_push` (
`id` int(10) unsigned NOT NULL AUTO_INCREMENT,
`service` text COMMENT '服务',
`object` text COMMENT '对象',
`context` text COMMENT '内容',
`result` text COMMENT '结果',
`error` text COMMENT '错误信息',
`time` bigint(20) DEFAULT NULL COMMENT '时间',
PRIMARY KEY (`id`)
) ENGINE=InnoDB AUTO_INCREMENT=50 DEFAULT CHARSET=utf8;