perf: 构建工具调整

This commit is contained in:
TsMask
2025-03-19 17:42:31 +08:00
parent 0838ac49e7
commit d987553af5
284 changed files with 25 additions and 1089 deletions

View File

@@ -0,0 +1,29 @@
-- ----------------------------
-- Table structure for sys_log_login
-- ----------------------------
DROP TABLE IF EXISTS "sys_log_login";
CREATE TABLE "sys_log_login" (
"id" integer NOT NULL,
"user_name" text(32),
"login_ip" text(128),
"login_location" text(128),
"browser" text(64),
"os" text(64),
"status_flag" text(1),
"msg" text(255),
"login_time" integer(20),
PRIMARY KEY ("id")
);
-- ----------------------------
-- Indexes structure for table sys_job_log
-- ----------------------------
CREATE INDEX "idx_name_group"
ON "sys_job_log" (
"job_name" ASC,
"job_group" ASC
);
-- ----------------------------
-- Records of sys_log_login
-- ----------------------------