25 lines
588 B
SQL
25 lines
588 B
SQL
-- ----------------------------
|
|
-- 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
|
|
-- ----------------------------
|