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,25 @@
-- ----------------------------
-- Table structure for sys_log_operate
-- ----------------------------
DROP TABLE IF EXISTS "sys_log_operate";
CREATE TABLE "sys_log_operate" (
"id" integer NOT NULL,
"title" text(64),
"business_type" text(1),
"opera_url" text(200),
"opera_url_method" text(10),
"opera_ip" text(128),
"opera_location" text(128),
"opera_param" text(2000),
"opera_msg" text(2000),
"opera_method" text(128),
"opera_by" text(64),
"opera_time" integer(20),
"status_flag" text(1),
"cost_time" integer(20),
PRIMARY KEY ("id")
);
-- ----------------------------
-- Records of sys_log_operate
-- ----------------------------