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

24 lines
551 B
SQL

-- ----------------------------
-- Table structure for pm_custom_data
-- ----------------------------
DROP TABLE IF EXISTS "pm_custom_data";
CREATE TABLE "pm_custom_data" (
"id" integer NOT NULL,
"date" text,
"ne_name" text(64),
"rm_uid" text(64),
"ne_type" text(16),
"granul_option" text(255),
"object_type" text(32),
"kpi_id" text(64),
"start_time" text,
"end_time" text,
"value" integer,
"timestamp" text,
PRIMARY KEY ("id")
);
-- ----------------------------
-- Records of pm_custom_data
-- ----------------------------