Files
plugins/CommentPush/sql/install/SQLite.sql
chorblack e75f275ef4
Some checks failed
定时更新GitHub源插件 / 自动更新GitHub插件 (push) Has been cancelled
Initial commit
2026-03-07 11:19:25 +08:00

9 lines
277 B
SQL

CREATE TABLE IF NOT EXISTS "{prefix}comment_push" (
"id" integer PRIMARY KEY AUTOINCREMENT,
"service" text DEFAULT NULL,
"object" text DEFAULT NULL,
"context" text DEFAULT NULL,
"result" text DEFAULT NULL,
"error" text DEFAULT NULL,
"time" integer DEFAULT NULL
);