24 lines
551 B
SQL
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
|
|
-- ----------------------------
|