Files
be.ems/build/database/lite/install/kpi_report_upf.sql
2025-03-19 17:42:31 +08:00

32 lines
768 B
SQL

-- ----------------------------
-- Table structure for kpi_report_upf
-- ----------------------------
DROP TABLE IF EXISTS "kpi_report_upf";
CREATE TABLE "kpi_report_upf" (
"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_upf
-- ----------------------------
CREATE INDEX "idx_upf_uid_at"
ON "kpi_report_upf" (
"rm_uid" ASC,
"created_at" ASC
);
-- ----------------------------
-- Records of kpi_report_upf
-- ----------------------------