perf: 构建工具调整
This commit is contained in:
31
build/database/lite/install/kpi_report_cbc.sql
Normal file
31
build/database/lite/install/kpi_report_cbc.sql
Normal file
@@ -0,0 +1,31 @@
|
||||
-- ----------------------------
|
||||
-- Table structure for kpi_report_cbc
|
||||
-- ----------------------------
|
||||
DROP TABLE IF EXISTS "kpi_report_cbc";
|
||||
CREATE TABLE "kpi_report_cbc" (
|
||||
"id" integer NOT NULL,
|
||||
"ne_type" text(16),
|
||||
"ne_name" text(64),
|
||||
"rm_uid" text(64),
|
||||
"date" text(10) NOT NULL,
|
||||
"start_time" text(10),
|
||||
"end_time" text(10),
|
||||
"index" integer(11) NOT NULL,
|
||||
"granularity" integer(11),
|
||||
"kpi_values" text,
|
||||
"created_at" integer(20),
|
||||
PRIMARY KEY ("id")
|
||||
);
|
||||
|
||||
-- ----------------------------
|
||||
-- Indexes structure for table kpi_report_cbc
|
||||
-- ----------------------------
|
||||
CREATE INDEX "idx_cbc_uid_at"
|
||||
ON "kpi_report_cbc" (
|
||||
"rm_uid" ASC,
|
||||
"created_at" ASC
|
||||
);
|
||||
|
||||
-- ----------------------------
|
||||
-- Records of kpi_report_cbc
|
||||
-- ----------------------------
|
||||
Reference in New Issue
Block a user