25 lines
609 B
SQL
25 lines
609 B
SQL
-- ----------------------------
|
|
-- Table structure for trace_task_hlr
|
|
-- ----------------------------
|
|
DROP TABLE IF EXISTS "trace_task_hlr";
|
|
CREATE TABLE "trace_task_hlr" (
|
|
"id" integer NOT NULL,
|
|
"trace_id" text(50) NOT NULL,
|
|
"imsi" text(16),
|
|
"msisdn" text(16),
|
|
"start_time" integer(20),
|
|
"end_time" integer(20),
|
|
"status" text(1),
|
|
"msg" text(255),
|
|
"remark" text(255),
|
|
"create_by" text(50),
|
|
"create_time" integer(20),
|
|
"update_by" text(50),
|
|
"update_time" integer(20),
|
|
PRIMARY KEY ("id")
|
|
);
|
|
|
|
-- ----------------------------
|
|
-- Records of trace_task_hlr
|
|
-- ----------------------------
|