19 lines
453 B
SQL
19 lines
453 B
SQL
-- ----------------------------
|
|
-- Table structure for monitor_network
|
|
-- ----------------------------
|
|
DROP TABLE IF EXISTS "monitor_network";
|
|
CREATE TABLE "monitor_network" (
|
|
"id" integer NOT NULL,
|
|
"create_time" integer(20),
|
|
"name" text(50) NOT NULL,
|
|
"up" integer,
|
|
"down" integer,
|
|
"ne_type" text(32),
|
|
"ne_id" text(32),
|
|
PRIMARY KEY ("id")
|
|
);
|
|
|
|
-- ----------------------------
|
|
-- Records of monitor_network
|
|
-- ----------------------------
|