21 lines
526 B
SQL
21 lines
526 B
SQL
-- ----------------------------
|
|
-- Table structure for measure_threshold
|
|
-- ----------------------------
|
|
DROP TABLE IF EXISTS "measure_threshold";
|
|
CREATE TABLE "measure_threshold" (
|
|
"id" integer NOT NULL,
|
|
"ne_type" text(16),
|
|
"kpi_set" text(1024),
|
|
"threshold" integer(20),
|
|
"status" text(255),
|
|
"orig_severity" text(255),
|
|
"alarm_code" text(16),
|
|
"alarm_flag" integer(4),
|
|
"create_time" text,
|
|
PRIMARY KEY ("id")
|
|
);
|
|
|
|
-- ----------------------------
|
|
-- Records of measure_threshold
|
|
-- ----------------------------
|