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