perf: 构建工具调整
This commit is contained in:
24
build/database/lite/install/trace_data.sql
Normal file
24
build/database/lite/install/trace_data.sql
Normal 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
|
||||
-- ----------------------------
|
||||
Reference in New Issue
Block a user