mirror of
https://github.com/certd/certd.git
synced 2026-04-23 19:57:27 +08:00
b5cc794061
- 新增监控任务执行记录页面及相关API - 添加数据库表结构及多数据库支持 - 完善国际化翻译 - 实现批量删除功能 - 优化站点监控服务逻辑
23 lines
772 B
SQL
23 lines
772 B
SQL
|
|
CREATE TABLE "cd_job_history"
|
|
(
|
|
"id" integer PRIMARY KEY AUTOINCREMENT NOT NULL,
|
|
"user_id" integer NOT NULL,
|
|
"project_id" integer ,
|
|
"type" varchar(100) NOT NULL,
|
|
"title" varchar(512) NOT NULL,
|
|
"related_id" varchar(100),
|
|
"result" varchar(100) NOT NULL,
|
|
"content" text ,
|
|
"start_at" integer NOT NULL,
|
|
"end_at" integer ,
|
|
"create_time" datetime NOT NULL DEFAULT (CURRENT_TIMESTAMP),
|
|
"update_time" datetime NOT NULL DEFAULT (CURRENT_TIMESTAMP)
|
|
);
|
|
|
|
|
|
|
|
CREATE INDEX "index_job_history_user_id" ON "cd_job_history" ("user_id");
|
|
CREATE INDEX "index_job_history_project_id" ON "cd_job_history" ("project_id");
|
|
CREATE INDEX "index_job_history_type" ON "cd_job_history" ("type");
|