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,24 @@
-- ----------------------------
-- Table structure for trace_data
-- ----------------------------
DROP TABLE IF EXISTS "trace_data";
CREATE TABLE "trace_data" (
"id" integer NOT NULL,
"task_id" integer(11) NOT NULL,
"imsi" text(16),
"msisdn" text(16),
"src_addr" text(128),
"dst_addr" text(128),
"if_type" integer(11),
"msg_type" integer(11),
"msg_direct" integer(11),
"length" integer(11),
"timestamp" integer(20),
"raw_msg" text,
"dec_msg" text,
PRIMARY KEY ("id")
);
-- ----------------------------
-- Records of trace_data
-- ----------------------------