32 lines
747 B
SQL
32 lines
747 B
SQL
-- ----------------------------
|
|
-- Table structure for ne_host_cmd
|
|
-- ----------------------------
|
|
DROP TABLE IF EXISTS "ne_host_cmd";
|
|
CREATE TABLE "ne_host_cmd" (
|
|
"id" integer NOT NULL,
|
|
"cmd_type" text(16),
|
|
"group_id" text(2),
|
|
"title" text(50),
|
|
"command" text(500),
|
|
"remark" text(500),
|
|
"create_by" text(50),
|
|
"create_time" integer(20),
|
|
"update_by" text(50),
|
|
"update_time" integer(20),
|
|
PRIMARY KEY ("id")
|
|
);
|
|
|
|
-- ----------------------------
|
|
-- Indexes structure for table ne_host_cmd
|
|
-- ----------------------------
|
|
CREATE UNIQUE INDEX "uk_host_type_group_title"
|
|
ON "ne_host_cmd" (
|
|
"cmd_type" ASC,
|
|
"group_id" ASC,
|
|
"title" ASC
|
|
);
|
|
|
|
-- ----------------------------
|
|
-- Records of ne_host_cmd
|
|
-- ----------------------------
|